Reviewed-on: #2 Co-authored-by: Jinseok (심진석) <jinseok.sim@tf.dabeeo.com> Co-committed-by: Jinseok (심진석) <jinseok.sim@tf.dabeeo.com>
11 lines
157 B
TypeScript
11 lines
157 B
TypeScript
import { Outlet } from 'react-router';
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<div>
|
|
기본 레이아웃
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|