BlankLayout.jsx 249 Bytes
Newer Older
熊成伟's avatar
熊成伟 committed
1 2
import React from 'react';
import {withRouter} from 'react-router-dom'
熊成伟's avatar
熊成伟 committed
3
import './index.less'
熊成伟's avatar
熊成伟 committed
4 5 6

const BlankLayout = (props) => {
    return (
熊成伟's avatar
熊成伟 committed
7 8
        <div>
            {props.children}
熊成伟's avatar
熊成伟 committed
9 10 11 12 13
        </div>
    );
};

export default withRouter(BlankLayout);