mirror of
https://github.com/yinxin630/fiora.git
synced 2026-06-04 21:03:18 +08:00
14 lines
335 B
TypeScript
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>
|
|
);
|
|
}
|