-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
27 lines (25 loc) · 1023 Bytes
/
data.js
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
let getData =
[
{
id: 1,
archive : false,
title : "Hai, Selamat datang di Notemee",
note : "Babel merupakan tools open-source yang digunakan untuk mengubah sintaks ECMAScript 2015+ menjadi sintaks yang idkung oleh JavaScript engine versi lama. Babel sering dipakai ketika kita menggunakan sintaks terbaru termasuk sintaks JSX.",
time : "Sun March 14 2022"
},
{
id: 2,
title : "Functional Component",
archive : false,
note : "Functional component ct component.",
time : "Sun March 14 2022"
},
{
id : 3,
archive : false,
title : "Modul Bundler",
note : "Dalam konteks pemrograman JavaScript, module bundler merupakan tools yang digunakan untuk menggabungkan seluruh modul JavaScript yang digunakan oleh aplikasi menjadi satu berkas.",
time : "Sun March 14 2022"
}
]
export {getData};