feat(sass template): change header text

This commit is contained in:
Arnau Gómez
2022-01-09 14:23:42 +01:00
parent 62fb3be1aa
commit 99ee4b2617
2 changed files with 1 additions and 71 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import type { Component } from 'solid-js';
import './App.scss';
const App: Component = () => {
return <h1 class="header">Hello world!</h1>;
return <h1 class="header">Hello Sass!</h1>;
};
export default App;