style: auto-format code

This commit is contained in:
Jean-Philippe Sirois
2019-07-27 17:32:39 -04:00
parent e9f1bec654
commit 22e4d68583
8 changed files with 50 additions and 45 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
import React, { PropsWithChildren} from "react"
import React, { PropsWithChildren } from "react"
import * as SC from "./styles"
const Container = ({ children, ...restProps }: PropsWithChildren<{}>): JSX.Element => (
const Container = ({
children,
...restProps
}: PropsWithChildren<{}>): JSX.Element => (
<SC.ContainerWrapper {...restProps}>{children}</SC.ContainerWrapper>
)