Last_Dance
This commit is contained in:
17
ubung4_String/lab07/src/App.jsx
Normal file
17
ubung4_String/lab07/src/App.jsx
Normal file
@ -0,0 +1,17 @@
|
||||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
import store from './store';
|
||||
import MyInput from './MyInput.jsx';
|
||||
import MyOutput from './MyOutput.jsx';
|
||||
import './App.css';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<Provider store={store}>
|
||||
<div className="app-container">
|
||||
<MyInput />
|
||||
<MyOutput />
|
||||
</div>
|
||||
</Provider>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user