LoadingError.tsx
1 type LoadingErrorProps = { 2 message: string; 3 }; 4 export default function LoadingError(props: LoadingErrorProps) { 5 return ( 6 <div style={{ width: "100%", minWidth: "100%" }}> 7 <p> 8 <i>{props.message} </i> 9 </p> 10 </div> 11 ); 12 }