Fix learn how to set up account layout

This commit is contained in:
Brandon Millman
2018-06-27 17:04:20 -07:00
parent 6700745585
commit 3315006c45
2 changed files with 13 additions and 11 deletions

View File

@@ -6,9 +6,9 @@ export interface SectionProps {
}
export const Section = (props: SectionProps) => {
return (
<div className="flex flex-column" style={{ height: '100%' }}>
<div className="flex flex-column">
{props.header}
<div className="flex-auto">{props.body}</div>
{props.body}
</div>
);
};