diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-25 23:09:49 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-25 23:09:49 +0300 |
commit | 062f10a25d43b875d187cf582b2ecf96d075ec26 (patch) | |
tree | c6b43379325ba22a051827e6a461a8f8fed98402 /src/containers/Page.tsx | |
parent | 77ac1549e2ab5ac68a1a7464ada9be7e2a2aad92 (diff) | |
download | commercel-ui-062f10a25d43b875d187cf582b2ecf96d075ec26.tar.gz |
refactor: move services to separate folder
Diffstat (limited to 'src/containers/Page.tsx')
-rw-r--r-- | src/containers/Page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/Page.tsx b/src/containers/Page.tsx index c4d4efd..d3a087a 100644 --- a/src/containers/Page.tsx +++ b/src/containers/Page.tsx @@ -16,7 +16,7 @@ const style = 'mb-2 flex justify-between md:flex-row md:items-center'; const Page: React.FC<Props> = ({ title, actions, className, children }) => ( <Paper className="xl:m-5"> - <div className={`${style} ${actions?.length > 1 ? 'flex-col items-start' : 'flex-row items-center'}`}> + <div className={`${style} ${(actions?.length || 0) > 1 ? 'flex-col items-start' : 'flex-row items-center'}`}> <span className="text-2xl font-bold">{title}</span> <div> {actions?.map(action => (<Button {...action} key={action.name} size="sm">{action.name}</Button>))} |