feature/5-base-components #18

Merged
philipp merged 25 commits from feature/5-base-components into develop 2020-12-30 17:24:16 +00:00
Showing only changes of commit b2b05a4ec9 - Show all commits

View File

@ -10,6 +10,10 @@
import StatCards from "./StatCards.svelte"; import StatCards from "./StatCards.svelte";
import Table from "./Table.svelte"; import Table from "./Table.svelte";
import Tracks from "./Tracks.svelte"; import Tracks from "./Tracks.svelte";
import Tabs from "./Tabs.svelte";
import Tags from "./Tags.svelte";
import Badges from "./Badges.svelte";
import Avatars from "./Avatars.svelte";
let activePage = "dashboard"; let activePage = "dashboard";
let dropdown1 = false; let dropdown1 = false;
@ -259,6 +263,18 @@
<div class="mb-8"> <div class="mb-8">
<DataTable /> <DataTable />
</div> </div>
<div class="mb-8">
<Tabs />
</div>
<div class="mb-8">
<Tags />
</div>
<div class="mb-8">
<Badges />
</div>
<div class="mb-8">
<Avatars />
</div>
<StatCards /> <StatCards />
<div class="mb-8"> <div class="mb-8">
<Tracks /> <Tracks />