mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-29 05:00:43 +10:00
Prettier
This commit is contained in:
parent
09d4fbfe27
commit
34249b06a9
4 changed files with 9 additions and 9 deletions
|
|
@ -7,7 +7,12 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import classNames from 'classnames';
|
||||
import { LayoutWrapperTopbar, LayoutWrapperSideNav, LayoutWrapperMain, LayoutWrapperFooter } from '../../components';
|
||||
import {
|
||||
LayoutWrapperTopbar,
|
||||
LayoutWrapperSideNav,
|
||||
LayoutWrapperMain,
|
||||
LayoutWrapperFooter,
|
||||
} from '../../components';
|
||||
|
||||
import css from './LayoutSideNavigation.css';
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,5 @@
|
|||
/* Expand to the full remaining width of the viewport */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%
|
||||
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
/* Expand to the full remaining width of the viewport */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,11 +6,7 @@ import { Page } from '../../components';
|
|||
|
||||
const StaticPageComponent = props => {
|
||||
const { children, ...pageProps } = props;
|
||||
return (
|
||||
<Page {...pageProps}>
|
||||
{children}
|
||||
</Page>
|
||||
);
|
||||
return <Page {...pageProps}>{children}</Page>;
|
||||
};
|
||||
|
||||
StaticPageComponent.defaultProps = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue