- Updated to React 18

- Updated for public release
  - Git was reset for privacy reasons
This commit is contained in:
2022-06-27 16:41:03 +02:00
commit 3cb1759648
68 changed files with 35317 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import { FunctionComponent } from "react";
type Props = {};
export const HomeContainer: FunctionComponent<Props> = () => {
return (
<header className="App-header">
<p>This is the react base app :)</p>
<span>
<span>Learn </span>
<a className="App-link" href="https://reactjs.org/" target="_blank" rel="noopener noreferrer">
React
</a>
<span>, </span>
<a className="App-link" href="https://redux.js.org/" target="_blank" rel="noopener noreferrer">
Redux
</a>
<span>, </span>
<a className="App-link" href="https://redux-toolkit.js.org/" target="_blank" rel="noopener noreferrer">
Redux Toolkit
</a>
,<span> and </span>
<a className="App-link" href="https://react-redux.js.org/" target="_blank" rel="noopener noreferrer">
React Redux
</a>
</span>
</header>
);
};