Minhyeok Park beba067305
All checks were successful
/ deploy_site (push) Successful in 1m56s
refactor: upload temp
2024-10-26 17:57:34 +09:00

13 lines
255 B
TypeScript

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>