diff options
| author | realtradam <[email protected]> | 2024-04-14 21:53:27 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-04-14 21:53:27 -0400 |
| commit | 425939bc7d49436dea66dcb88fce2e22ad6e64e4 (patch) | |
| tree | f8879ca7a5aa7eb2f99b12c2fbe43e50b64a54e3 /app/javascript/components | |
| parent | 5d6c31ab4b3b6b663485021c697a41e2a2531b9c (diff) | |
| download | gameHolster-425939bc7d49436dea66dcb88fce2e22ad6e64e4.tar.gz gameHolster-425939bc7d49436dea66dcb88fce2e22ad6e64e4.zip | |
implement basic authflow with github
Diffstat (limited to 'app/javascript/components')
| -rw-r--r-- | app/javascript/components/App.jsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/javascript/components/App.jsx b/app/javascript/components/App.jsx index 6d7a0c7..da6a873 100644 --- a/app/javascript/components/App.jsx +++ b/app/javascript/components/App.jsx @@ -1,4 +1,7 @@ import React from "react"; import Routes from "../routes"; -export default props => <>{Routes}</>; +export default (props) => { + return (<Routes />); +} + |
