This commit is contained in:
2019-01-15 18:33:39 +01:00
commit 5ce5e18947
8 changed files with 8680 additions and 0 deletions

3
src/index.ts Normal file
View File

@@ -0,0 +1,3 @@
import main from './main';
main();

3
src/main.scss Normal file
View File

@@ -0,0 +1,3 @@
.main {
color: red;
}

5
src/main.ts Normal file
View File

@@ -0,0 +1,5 @@
import * as classes from './main.scss';
export default () => {
console.log(classes);
};