index.js 293 Bytes
Newer Older
ζ„šι“'s avatar
ζ„šι“ committed
1 2 3 4 5 6 7 8 9 10 11 12
import React from 'react';
import BasecLayout from './BasicLayout';

// TODO routerData menuData etc...
export default props => {
  const { location, children } = props;
  return (
    <BasecLayout routerData={{}} menuData={[]} location={location}>
      {children}
    </BasecLayout>
  );
};