From bc50d3d5b6f9e7ec8642d435ea830df7c2f6333e Mon Sep 17 00:00:00 2001 From: d_yanis Date: Mon, 4 Dec 2023 18:13:02 +0100 Subject: [PATCH] Add the css of the page --- front/style/home.css | 7 +++++++ front/views/Home.tsx | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 front/style/home.css diff --git a/front/style/home.css b/front/style/home.css new file mode 100644 index 0000000..d9c37f9 --- /dev/null +++ b/front/style/home.css @@ -0,0 +1,7 @@ +#IQ { + color : red; +} + +#B { + color : blue; +} \ No newline at end of file diff --git a/front/views/Home.tsx b/front/views/Home.tsx index 9e506fa..fb50fb7 100644 --- a/front/views/Home.tsx +++ b/front/views/Home.tsx @@ -1,7 +1,9 @@ +import "../style/home.css" + export default function Home(){ return (
-

Home

+

IQBall

) } \ No newline at end of file