interface LoadingProps { loading?: boolean; } export default function Loading({ loading = true }: LoadingProps) { return (

Loading...

); }