ui: prepare base layout

This commit is contained in:
Jean-Philippe Sirois
2019-07-27 01:10:49 -04:00
parent 7f7e713f9f
commit c599d10224
15 changed files with 264 additions and 78 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from "react"
import * as SC from "./styles"
interface ContainerProps {
children: React.ReactNode
}
const Container = ({ children, ...restProps }: ContainerProps): JSX.Element => (
<SC.ContainerWrapper {...restProps}>{children}</SC.ContainerWrapper>
)
export default Container