import React from 'react'; import { Alert, Spin, Switch } from 'antd'; const App: React.FC = () => { const [loading, setLoading] = React.useState(false); return ( <>
Loading stateļ¼š
); }; export default App;