import classNames from 'classnames'; import { Banner, Loading } from 'react-basics'; import styles from './Page.module.css'; export default function Page({ className, error, loading, children }) { if (error) { return Something went wrong.; } if (loading) { return ; } return
{children}
; }