10 lines
305 B
JavaScript
10 lines
305 B
JavaScript
![]() |
const WelcomeWrapper = ({ theme, children }) => (
|
||
|
<section className="m-0 p-0 w-full">
|
||
|
<div className="flex flex-col items-center justify-start h-screen mt-4 lg:mt-32 max-w-lg m-auto">
|
||
|
<div className="w-full text-left">{children}</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
)
|
||
|
|
||
|
export default WelcomeWrapper
|