From 99ee4b261741b7878796ad57586aeda988a286c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnau=20Go=CC=81mez?= Date: Sun, 9 Jan 2022 14:23:42 +0100 Subject: [PATCH] feat(sass template): change header text --- .idea/workspace.xml | 70 --------------------------------------------- ts-sass/src/App.tsx | 2 +- 2 files changed, 1 insertion(+), 71 deletions(-) delete mode 100644 .idea/workspace.xml diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 910da95..0000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1641733324662 - - - - - - - - - - true - - \ No newline at end of file diff --git a/ts-sass/src/App.tsx b/ts-sass/src/App.tsx index b1c2046..9b8f35e 100644 --- a/ts-sass/src/App.tsx +++ b/ts-sass/src/App.tsx @@ -2,7 +2,7 @@ import type { Component } from 'solid-js'; import './App.scss'; const App: Component = () => { - return

Hello world!

; + return

Hello Sass!

; }; export default App;