From 3cbca927c8ae9c5ce378588cada139bbb41707c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sun, 15 Sep 2024 18:03:32 +0400 Subject: [PATCH] Create Loading component --- components/loading.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 components/loading.js diff --git a/components/loading.js b/components/loading.js new file mode 100644 index 0000000..54e3590 --- /dev/null +++ b/components/loading.js @@ -0,0 +1,15 @@ +import Box from '@mui/material/Box' +import CircularProgress from '@mui/material/CircularProgress' + +export function Loading() { + return ( + + + + ) +}