9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
function Container({children}) {
|
|
return(
|
|
<div className="flex justify-center items-center h-screen">
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Container; |