File tree Expand file tree Collapse file tree 3 files changed +8
-24
lines changed
containers/SelectTutorial/forms Expand file tree Collapse file tree 3 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 11import * as React from 'react'
2+ import { ConfigProvider } from '@alifd/next'
3+ import enUS from '@alifd/next/lib/locale/en-us'
24import ErrorBoundary from './components/ErrorBoundary'
35import Routes from './Routes'
46
57const App = ( ) => (
6- < ErrorBoundary >
7- < Routes />
8- </ ErrorBoundary >
8+ < ConfigProvider locale = { enUS } >
9+ < ErrorBoundary >
10+ < Routes />
11+ </ ErrorBoundary >
12+ </ ConfigProvider >
913)
1014
1115export default App
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ const TutorialSelect = (props: Props) => {
2525 style = { { width : '100%' } }
2626 placeholder = "Tutorials..."
2727 state = { selectState }
28+ size = "large"
2829 >
2930 { data &&
3031 data . map ( ( tutorial ) => (
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments