mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 05:09:23 +00:00
13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
import { Provider } from 'react-redux'
|
|
|
|
import { Router } from '@/router'
|
|
import { store } from '@/services/store'
|
|
|
|
export function App() {
|
|
return (
|
|
<Provider store={store}>
|
|
<Router />
|
|
</Provider>
|
|
)
|
|
}
|