diff options
Diffstat (limited to 'src/containers')
-rw-r--r-- | src/containers/Page.tsx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/containers/Page.tsx b/src/containers/Page.tsx index 2d6fd14..f77dbd1 100644 --- a/src/containers/Page.tsx +++ b/src/containers/Page.tsx @@ -7,21 +7,15 @@ interface Props { title?: string; actions?: Action[]; filters?: JSX.Element; - isValidating?: boolean; className?: string; } const style = 'mb-2 flex justify-between md:flex-row md:items-center'; -const Spinner: React.FC = () => <> O</>; // TODO: replace with spinner - -const Page: React.FC<Props> = ({ title, actions, filters, isValidating, className, children }) => ( +const Page: React.FC<Props> = ({ title, actions, filters, className, children }) => ( <Paper className="xl:m-5 overflow-x-auto"> <div className={`${style} flex-col items-start`}> - <span className="text-2xl font-bold"> - {title} - {isValidating && <Spinner />} - </span> + <span className="text-2xl font-bold">{title}</span> <div className="flex"> {filters} {actions?.map(action => (<Button {...action} key={action.name} size="sm">{action.name}</Button>))} |