Browse Source

style: add BlankLayout default style

pull/5723/head
chenshuai2144 6 years ago
parent
commit
5e8f54cc6d
  1. 11
      src/layouts/BlankLayout.tsx

11
src/layouts/BlankLayout.tsx

@ -1,5 +1,14 @@
import React from 'react';
const Layout: React.FC = ({ children }) => <div>{children}</div>;
const Layout: React.FC = ({ children }) => (
<div
style={{
width: '100vh',
height: '100vh',
}}
>
{children}
</div>
);
export default Layout;

Loading…
Cancel
Save