* fix: nextjs slow compile time * fix: change optimized package imports and transpile packages * fix: format issue
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import { Center, Loader } from "@mantine/core";
|
|
|
|
export default function CommonLoading() {
|
|
return (
|
|
<Center h="100vh">
|
|
<Loader />
|
|
</Center>
|
|
);
|
|
}
|