mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/**
|
|
* Empty component for app shell
|
|
*
|
|
* See https://github.com/NekR/offline-plugin/blob/master/docs/app-shell.md
|
|
*/
|
|
import React from 'react';
|
|
|
|
const AppShell = () => <div />;
|
|
|
|
export default AppShell;
|