mirror of
https://github.com/ershisan99/todolist_next.git
synced 2025-12-16 20:59:24 +00:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { Loader } from "../ui/loader"
|
|
|
|
export const FullscreenLoader = () => {
|
|
return (
|
|
<div className={"flex h-screen items-center justify-center"}>
|
|
<Loader />
|
|
</div>
|
|
)
|
|
}
|