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
+3
View File
@@ -0,0 +1,3 @@
.header {
color: red;
}
+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;
+5
View File
@@ -0,0 +1,5 @@
import { render } from 'solid-js/web';
import App from './App';
render(() => <App />, document.getElementById('root') as HTMLElement);