Files

8 lines
119 B
JavaScript
Raw Permalink Normal View History

2023-07-22 13:11:56 +04:00
export default async function AwtisLayout({children}) {
return (
<section>
{children}
</section>
)
}