라이브러리/MUI

[MUI] 로딩 컴포넌트 코드 예시

순코딩 2025. 4. 10. 10:19
"use client";

import { CircularProgress } from "@mui/material";

const Loading = () => {
  return <CircularProgress sx={{ position: "fixed", top: "50%", left: "50%", transform: "translate(-50%, -50%)" }} />;
};

export default Loading;