fix: fix footer-component undefined

This commit is contained in:
unix
2020-03-19 02:25:25 +08:00
parent 0349a975fb
commit c100e876a8

View File

@@ -63,7 +63,7 @@ const Fieldset: React.FC<React.PropsWithChildren<FieldsetProps>> = React.memo(({
{!hasTitle && <FieldsetTitle>{title}</FieldsetTitle>}
{!hasSubtitle && <FieldsetSubtitle>{subtitle}</FieldsetSubtitle>}
</div>
{FooterChildren && {FooterChildren}}
{FooterChildren && FooterChildren}
<style jsx>{`
.fieldset {
background-color: ${theme.palette.background};