diff options
Diffstat (limited to 'client/src/App.js')
-rw-r--r-- | client/src/App.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/App.js b/client/src/App.js index c39f14e..0d6d904 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -1,9 +1,11 @@ import React from 'react' +import LanguageSelect from './components/LanguageSelect/LanguageSelect' import Index from './routes' const App = () => { return ( <> + <LanguageSelect /> <Index /> </> ) |