2020-06-29 17:32:51 +02:00
|
|
|
<script>
|
2020-10-08 11:42:53 +02:00
|
|
|
import Form from "./Form.svelte"
|
2020-07-06 17:24:44 +02:00
|
|
|
|
2020-06-29 17:32:51 +02:00
|
|
|
export let _bb
|
2020-10-09 19:49:23 +02:00
|
|
|
export let table
|
2020-07-06 11:17:23 +02:00
|
|
|
export let title
|
2020-07-06 17:24:44 +02:00
|
|
|
export let buttonText
|
2020-06-29 17:32:51 +02:00
|
|
|
</script>
|
2020-06-29 20:55:27 +02:00
|
|
|
|
2020-10-09 19:49:23 +02:00
|
|
|
<Form {_bb} {table} {title} {buttonText} wide={true} />
|