diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-21 07:13:09 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-21 07:13:09 +0800 |
commit | 01e7850cd3161748bc314901eb1a630503c10046 (patch) | |
tree | 5b47476a21deb67d937e7bf5df218a8f1f1b383b /packages/website/ts/components | |
parent | 970e670467277bd6c27fd9bdc18baf3f9fe733f7 (diff) | |
download | dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar.gz dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar.bz2 dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar.lz dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar.xz dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.tar.zst dexon-0x-contracts-01e7850cd3161748bc314901eb1a630503c10046.zip |
fix(website): Cleanup jobs section
Diffstat (limited to 'packages/website/ts/components')
-rw-r--r-- | packages/website/ts/components/ui/container.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/website/ts/components/ui/container.tsx b/packages/website/ts/components/ui/container.tsx index ae00851e5..4fa426dbd 100644 --- a/packages/website/ts/components/ui/container.tsx +++ b/packages/website/ts/components/ui/container.tsx @@ -9,6 +9,7 @@ type StringOrNum = string | number; export type ContainerTag = 'div' | 'span'; export interface ContainerProps { + children?: React.ReactNode; margin?: string; marginTop?: StringOrNum; marginBottom?: StringOrNum; |