14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export type AppLayoutProps = {
|
||
|
children?: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function AppLayout(props: AppLayoutProps) {
|
||
|
return (
|
||
|
<div className='app-layout'>
|
||
|
{props.children}
|
||
|
</div>
|
||
|
)
|
||
|
}
|