'use client'; import Image from 'next/image'; type Props = { type?: number; }; export default function Loading({ type = 1 }: Props) { return ( <> { type === 1 && (
준비 중...
)} { type === 2 && (
)} ); }