chore(examples): add webpack example set-up

The set-up uses the pre-compiled CSS.
This commit is contained in:
Eric Liu 2020-09-06 17:40:30 -07:00
commit 99f1dd2c34
11 changed files with 5664 additions and 0 deletions

View file

@ -0,0 +1,6 @@
import "carbon-components-svelte/css/all.css";
import App from "./App.svelte";
const app = new App({ target: document.body });
export default app;