summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/index.tsx b/src/index.tsx
index ef2edf8..3b08ba8 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,8 +1,14 @@
import React from 'react';
import ReactDOM from 'react-dom';
-import './index.css';
-import App from './App';
-import reportWebVitals from './reportWebVitals';
+import 'tailwindcss/tailwind.css';
+import Paper from './components/Paper';
+
+
+const App: React.FC = () => (
+ <Paper>
+ Hello, world!
+ </Paper>
+);
ReactDOM.render(
<React.StrictMode>
@@ -10,8 +16,3 @@ ReactDOM.render(
</React.StrictMode>,
document.getElementById('root')
);
-
-// 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();