[개인 포트폴리오] [클라이밍 커뮤니티 SNS] 2. 코드 분석 <loading-screen.js>

2024. 12. 20. 10:53웹개발 포트폴리오

728x90
반응형
import styled from "styled-components";

const Wrapper = styled.div`
    height: 100vh;
    width: 100vw; /* 화면 전체 너비 설정 */
    display: flex;
    justify-content: center;
    align-items: center;
`;

const Text = styled.span`
    font-family: pretendard-regular;
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
`;

export default function LoadingScreen(){
    return <Wrapper><Text>불러오는 중 ..</Text></Wrapper>
}
728x90
반응형