From 4ce3d204558b60e6a215ec59cbfc032129a3f4c5 Mon Sep 17 00:00:00 2001 From: Krittin SETDHAVANICH Date: Wed, 28 Jun 2023 14:17:40 +0700 Subject: [PATCH] add App.css --- src/App.css | 8 ++++++++ src/index.js | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/App.css diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..c6861a0 --- /dev/null +++ b/src/App.css @@ -0,0 +1,8 @@ +/** {*/ +/* background: red;*/ +/*}*/ + +/*body {*/ +/* background: white;*/ +/* color: white;*/ +/*}*/ \ No newline at end of file diff --git a/src/index.js b/src/index.js index bd8d222..8dc607e 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,7 @@ import ReactDOM from 'react-dom' import App from './App' import "./index.css" +import "./App.css" -ReactDOM.render(, document.querySelector("#root")) \ No newline at end of file +ReactDOM.render(, + document.querySelector("#root")) \ No newline at end of file