fiora/packages/app/App.tsx
2021-07-28 16:52:53 +08:00

14 lines
335 B
TypeScript

/* eslint-disable react/jsx-props-no-spreading */
import React from 'react';
import { Provider } from 'react-redux';
import App from './src/App';
import store from './src/state/store';
export default function Main(props: any) {
return (
<Provider store={store}>
<App {...props} />
</Provider>
);
}