2022-05-09 11:58:33 +08:00

19 lines
408 B
TypeScript

import { FC } from 'react'
import ContextBlueTooth from "@/use/contextBlueTooth"
import { Provider } from 'react-redux'
import configStore from './store'
import './app.scss'
const store = configStore()
const App:FC = ({children}) => {
return (
<ContextBlueTooth>
<Provider store={store}>
{children}
</Provider>
</ContextBlueTooth>
)
}
export default App