Last_Dance

This commit is contained in:
2025-06-23 15:01:20 +02:00
commit 3bbc4187f6
104 changed files with 20586 additions and 0 deletions

View 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>
);
}