From 1b6e230df7ffd31226af1716f5e442c134ea1c38 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 13 Mar 2021 21:54:30 +0300 Subject: feat: install tailwindcss --- src/index.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/index.tsx') 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 = () => ( + + Hello, world! + +); ReactDOM.render( @@ -10,8 +16,3 @@ ReactDOM.render( , 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(); -- cgit v1.2.3