add parts data

This commit is contained in:
Kurt Hutten
2020-10-11 19:41:48 +11:00
parent f1dc6c28e4
commit b3456860d2
34 changed files with 1146 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
import BlogLayout from 'src/layouts/BlogLayout'
import MainLayout from 'src/layouts/MainLayout'
import BlogPostsCell from 'src/components/BlogPostsCell'
import { initialize } from 'src/cascade/js/MainPage/CascadeMain'
import { useEffect, useState } from 'react'
@@ -35,11 +35,10 @@ const HomePage = () => {
}, [])
return (
<BlogLayout>
<MainLayout>
<div>current code {code}</div>
<BlogPostsCell/>
<div>
<h1 hidden></h1>
<div id="topnav" className="topnav">
<a href="https://github.com/zalo/CascadeStudio">Cascade Studio 0.0.6</a>
<a href="#" id="main-proj-button" title="Sets this project to save in local storage." onClick={() => makeMainProject()}>Make Main Project</a>
@@ -70,7 +69,7 @@ const HomePage = () => {
</div>
<footer>footer</footer>
</div>
</BlogLayout>
</MainLayout>
)
}