style: format codebase

This commit is contained in:
Jean-Philippe Sirois
2020-05-19 21:57:49 -04:00
parent 0eaea34b28
commit a1283334b3
37 changed files with 146 additions and 138 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ export const Main = styled.div`
display: flex;
width: 100%;
min-height: 100vh;
background: ${props => props.theme.main.background};
color: ${props => props.theme.main.foreground};
background: ${(props) => props.theme.main.background};
color: ${(props) => props.theme.main.foreground};
`
export const Overlay = styled.div`
+1 -1
View File
@@ -16,7 +16,7 @@ interface IBaseLayout extends IPageContext {
location: WindowLocation
}
const BaseLayout: FC<IBaseLayout> = props => {
const BaseLayout: FC<IBaseLayout> = (props) => {
const ResolvedLayout = useMemo(() => {
switch (props.pageContext.layout) {
case "resources":