feat: create new sass template

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