diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-30T19·28+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-30T19·28+0100 |
commit | af969a764141de5929086ffc09351b1bae3f2ed0 (patch) | |
tree | 53b758dab6dacfcedd332f7ecf3db69efa88fb22 /website/habitgarden/src/index.tsx | |
parent | 8d36c6d00fc2abba9ac04e9e2d4cc620e375d770 (diff) |
Prototype my digital habits journal
Trying to obviate my Google Sheets spreadsheet in favor of a more focused web app.
Diffstat (limited to 'website/habitgarden/src/index.tsx')
-rw-r--r-- | website/habitgarden/src/index.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/website/habitgarden/src/index.tsx b/website/habitgarden/src/index.tsx new file mode 100644 index 000000000000..dc28dc4a9cc8 --- /dev/null +++ b/website/habitgarden/src/index.tsx @@ -0,0 +1,12 @@ +import React from "react"; +import ReactDOM from "react-dom"; +import App from "./App"; +import { Provider } from "react-redux"; +import store from "./store"; + +ReactDOM.render( + <Provider store={store}> + <App /> + </Provider>, + document.getElementById("mount") +); |