Up to date CRA Started by Patrick Fic

This commit is contained in:
Patrick Fic
2020-09-29 14:06:16 -07:00
commit cc82bcc810
34 changed files with 13681 additions and 0 deletions

21
src/App/App.jsx Normal file
View File

@@ -0,0 +1,21 @@
import { Layout } from "antd";
import React from "react";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
const mapStateToProps = createStructuredSelector({});
const mapDispatchToProps = (dispatch) => ({});
export function App() {
return (
<Layout>
<Layout.Header>
<div> Header</div>
</Layout.Header>
<Layout.Content>
<div>Welcome to your new react app.</div>
</Layout.Content>
</Layout>
);
}
export default connect(mapStateToProps, mapDispatchToProps)(App);

0
src/App/App.styles.scss Normal file
View File