Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat(lsg): export default
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel committed Dec 6, 2017
1 parent c8046fd commit dcf762d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lsg/patterns/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ const StyledLayout = styled.div`
}
`;

export const Layout: React.StatelessComponent<LayoutProps> = props => (
const Layout: React.StatelessComponent<LayoutProps> = props => (
<StyledLayout className={props.className} directionVertical={props.directionVertical}>
{props.children}
</StyledLayout>
);

export default Layout;

0 comments on commit dcf762d

Please sign in to comment.