1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-17 03:51:13 +02:00

add support for templates

This commit is contained in:
Kushagra Gour
2018-07-09 23:25:12 +05:30
parent 66cf5ef0eb
commit f3f9bf6b08
12 changed files with 214 additions and 43 deletions

24
src/templateList.js Normal file
View File

@@ -0,0 +1,24 @@
export default [
{
id: 'preact',
title: 'Preact',
img: 'preact-logo.svg'
},
{
id: 'react',
title: 'React',
img: 'react-logo.svg'
},
{
id: 'html5-canvas',
title: 'HTML5 Canvas',
lastUpdatedTime: Date.now(),
img: 'html5-logo.svg'
},
{
id: 'html5-canvas-game',
title: 'HTML5 Canvas Game',
lastUpdatedTime: Date.now(),
img: 'html5-logo.svg'
}
];