refactor: upload temp
All checks were successful
/ deploy_site (push) Successful in 1m56s

This commit is contained in:
2024-10-26 17:57:34 +09:00
parent aa4cfabe11
commit beba067305
34 changed files with 3030 additions and 307 deletions

View File

@ -0,0 +1,12 @@
import { FC, ReactNode } from "react";
import style from './style.module.scss'
interface AppLayoutProp {
children?: ReactNode
}
export const AppLayout: FC<AppLayoutProp> = ({ children }) =>
<div className={style.container}>
{children}
</div>

View File

@ -0,0 +1,16 @@
.container {
display: flex;
width: 100vw;
height: 100dvh;
> * {
flex: 1;
}
@media (max-width: 1200px) {
& {
flex-direction: column;
}
}
}

11
src/App/index.tsx Normal file
View File

@ -0,0 +1,11 @@
import { FC } from "react";
import { AppLayout } from "./AppLayout";
import { Editor } from "../Editor";
import { TransformGrid } from "../TransformGrid";
export const App: FC = () =>
<AppLayout>
<Editor />
<TransformGrid />
</AppLayout>