From fd3e3280a2590be9ca074a172c535990a5035649 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Mon, 26 Dec 2022 00:11:58 -0500 Subject: Add a proxy option for static assets. Fix the paste view handlers. --- paste-ui/src/index.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 paste-ui/src/index.js (limited to 'paste-ui/src/index.js') diff --git a/paste-ui/src/index.js b/paste-ui/src/index.js new file mode 100644 index 0000000..d563c0f --- /dev/null +++ b/paste-ui/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); -- cgit v1.2.3