Commit a03ad09e authored by Neranga K.T.'s avatar Neranga K.T.

src->memory folder added

parent 5630e63e
import Category from "../models/category";
export const CATEGORIES = [
new Category('1', 'Memo', 'https://cdn.pixabay.com/photo/2014/09/21/21/31/flowers-455591_960_720.jpg'),
new Category('2', 'Inorder', 'https://cdn.pixabay.com/photo/2019/02/22/19/03/numbers-4014181_960_720.jpg'),
new Category('3', 'Shapes', 'https://cdn.pixabay.com/photo/2018/08/22/12/38/color-3623523_960_720.jpg'),
new Category('4', 'Memo', 'https://cdn.pixabay.com/photo/2014/09/21/21/31/flowers-455591_960_720.jpg'),
]
\ No newline at end of file
class Category{
constructor(id, title, url){
this.id = id,
this.title = title,
this.url = url
}
}
export default Category;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment