import React, {Component} from 'react'; import { Layout } from '@douyinfe/semi-ui'; type Props = {}; type State = { redirect: string | null, username: string, password: string, loading: boolean, message: string }; export default class Test extends Component { render() { console.log('124234'); const onbreakpoint = (screen, bool) => { console.log(screen, bool); }; const commonStyle = { height: 64, lineHeight: '64px', background: 'var(--semi-color-fill-0)' }; const { Header, Footer, Sider, Content } = Layout; return (
Header
Sider Content
); } }