mirror of https://github.com/Budibase/budibase.git
4 changed files with 54 additions and 17 deletions
@ -1 +1,25 @@ |
|||
This is the budibase internal database |
|||
<script> |
|||
import { Button, Heading, Body, Layout, Modal } from "@budibase/bbui" |
|||
import CreateTableModal from "components/backend/TableNavigator/modals/CreateTableModal.svelte" |
|||
|
|||
let modal |
|||
|
|||
|
|||
</script> |
|||
|
|||
<Modal bind:this={modal}> |
|||
<CreateTableModal /> |
|||
</Modal> |
|||
|
|||
<Layout> |
|||
<Heading> |
|||
Budibase Internal DB |
|||
</Heading> |
|||
|
|||
<Body> |
|||
Stuff about the internal table |
|||
</Body> |
|||
|
|||
<Button cta on:click={modal.show}>Create new table</Button> |
|||
|
|||
</Layout> |
|||
Loading…
Reference in new issue