Blank layout for dashboards made with Alibaba's Fusion.Design
Demo: https://fusion-dashboard.netlify.app/
New features:
- Application loading indicator
- Link Component build around Umi.js Link and adopted for Fusion.Design
- PageHeader component
- PagecContent component (to hold page content)
- ProfileMenu component
- Localisation via
react-intl-universal
import PageContent from '@/components/PageContent';
const page = () =>
{
return <PageContent title={'My profile'} breadcrumbs={[
{
path: '/',
name: 'Home'
},
{
path: '/dashboard',
name: 'Dashboard'
},
{
name: 'Profile'
}
]}>
</PageContent>;
};
export default page;