Projekt

Obecné

Profil

Stáhnout (367 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { Layout } from 'antd';
2
const { Header, Footer, Sider, Content } = Layout;
3

    
4
import Props from '../components/props';
5

    
6
function LoginLayout(props: Props) {
7
    return (
8
        <Layout>
9
            <Content></Content>
10
            <Sider>
11
                <main>{props.children}</main>
12
            </Sider>
13
        </Layout>
14
    );
15
}
16

    
17
export default LoginLayout;
    (1-1/1)