()
| 54 | } |
| 55 | |
| 56 | function App(): React.JSX.Element { |
| 57 | return ( |
| 58 | <ErrorBoundary> |
| 59 | <ConfigProvider |
| 60 | locale={zhCN} |
| 61 | theme={{ |
| 62 | cssVar: true, |
| 63 | algorithm: theme.defaultAlgorithm, |
| 64 | token: { |
| 65 | colorPrimary: '#1677ff', |
| 66 | borderRadius: 4, |
| 67 | fontSize: 14 |
| 68 | }, |
| 69 | components: { |
| 70 | Menu: { |
| 71 | itemHeight: 32, |
| 72 | itemMarginInline: 4 |
| 73 | }, |
| 74 | Tree: { |
| 75 | titleHeight: 32 |
| 76 | } |
| 77 | } |
| 78 | }} |
| 79 | > |
| 80 | <AntdApp className="app-layout"> |
| 81 | <AppContent /> |
| 82 | </AntdApp> |
| 83 | </ConfigProvider> |
| 84 | </ErrorBoundary> |
| 85 | ) |
| 86 | } |
| 87 | |
| 88 | export default App |
nothing calls this directly
no outgoing calls
no test coverage detected