-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseedData.js
More file actions
37 lines (36 loc) · 926 Bytes
/
seedData.js
File metadata and controls
37 lines (36 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const data = [
{
title: '파이썬 공부',
description: '프로그래밍 시작하기 in Python 토픽 끝내기',
isComplete: false,
createdAt: '2023-03-23T06:34:11.617Z',
updatedAt: '2023-03-23T06:34:11.617Z',
},
{
title: '리액트 공부',
description: 'Tic Tac Toe 게임 완성하기',
isComplete: false,
createdAt: '2023-03-23T06:34:10.617Z',
updatedAt: '2023-03-23T06:34:10.617Z',
},
{
title: '집 청소',
isComplete: false,
createdAt: '2023-03-23T06:34:09.617Z',
updatedAt: '2023-03-23T06:34:09.617Z',
},
{
title: '독서',
description: '30 페이지',
isComplete: false,
createdAt: '2023-03-23T06:34:08.617Z',
updatedAt: '2023-03-23T06:34:08.617Z',
},
{
title: '30분 운동',
isComplete: false,
createdAt: '2023-03-23T06:34:07.617Z',
updatedAt: '2023-03-23T06:34:07.617Z',
},
];
export default data;