Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Outlet } from "react-router-dom"
|
||||
|
||||
/**
|
||||
* Empty layout component that provides minimal structure.
|
||||
* Useful for pages that need full control over their layout.
|
||||
*/
|
||||
export default function EmptyLayout() {
|
||||
return (
|
||||
<div className="min-h-screen">
|
||||
<Outlet />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user