feat: started to work on table

This commit is contained in:
Alexander Daichendt 2022-07-26 17:52:10 +02:00
parent 7561329158
commit 68e0efd51c
6 changed files with 47 additions and 9 deletions

View file

@ -1,8 +1,8 @@
<script context="module">
// @ts-ignore
import components from '../components';
const a = components.a;
export { a };
import components from './components';
const { a, table } = components;
export { a, table };
</script>
<script>
@ -15,6 +15,8 @@
export let date;
// svelte-ignore unused-export-let
export let keywords;
// svelte-ignore unused-export-let
export let hidden;
</script>
<slot />