daily: 2021-09-26

This commit is contained in:
2021-09-27 00:40:21 +08:00
parent 93e19c05af
commit fb671cd62a
22 changed files with 2295 additions and 64 deletions
+13
View File
@@ -0,0 +1,13 @@
import Canvas from "../Canvas";
import Header from "../Header";
import Styles from "./index.module.css";
export default function Editor() {
return (
<div className={Styles.container}>
<Canvas>
<Header />
</Canvas>
</div>
);
}
+7
View File
@@ -0,0 +1,7 @@
.container {
background-color: white;
height: 100%;
display: flex;
justify-content: center;
padding-top: 8px;
}