mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 00:29:12 +08:00
480cb3cbc3
* fix: remove defaultProps * fix: remove defaultProps * fix: update snap * fix: fix * fix: fix
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
/**
|
|
* Empty component for app shell
|
|
*
|
|
* See https://github.com/NekR/offline-plugin/blob/master/docs/app-shell.md
|
|
*/
|
|
import React from 'react';
|
|
|
|
const AppShell: React.FC = () => <div />;
|
|
|
|
export default AppShell;
|