diff options
| author | mokha <mokha@cisco.com> | 2018-08-15 15:13:12 -0600 |
|---|---|---|
| committer | mokha <mokha@cisco.com> | 2018-08-15 15:13:12 -0600 |
| commit | a2e7e858a81ccc38ccd6006d8a212eb23ddaa2be (patch) | |
| tree | 0d73fc36152f50623153cb7051ebf6417f67f1e7 /src | |
| parent | 1ed99d021e9a68100ed231cef2e6aeb9587c3f27 (diff) | |
add css and style loaders.
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.js | 2 | ||||
| -rw-r--r-- | src/main.css | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js index ba45358..82b8e65 100644 --- a/src/index.js +++ b/src/index.js @@ -1,2 +1,4 @@ import component from './component'; +import "./main.css"; + document.body.appendChild(component()); diff --git a/src/main.css b/src/main.css new file mode 100644 index 0000000..9bee0f0 --- /dev/null +++ b/src/main.css @@ -0,0 +1,3 @@ +body { + background: cornsilk; +} |
