8 lines
119 B
JavaScript
8 lines
119 B
JavaScript
export default async function AwtisLayout({children}) {
|
|
return (
|
|
<section>
|
|
{children}
|
|
</section>
|
|
)
|
|
}
|