2020-05-06 11:33:30 +02:00
|
|
|
<script>
|
2020-10-08 11:42:53 +02:00
|
|
|
import Form from "./Form.svelte"
|
2020-05-06 11:33:30 +02:00
|
|
|
|
|
|
|
export let _bb
|
2020-05-07 23:15:09 +02:00
|
|
|
export let model
|
2020-07-06 11:17:23 +02:00
|
|
|
export let title
|
2020-07-06 17:24:44 +02:00
|
|
|
export let buttonText
|
2020-05-06 11:33:30 +02:00
|
|
|
</script>
|
|
|
|
|
2020-10-08 11:42:53 +02:00
|
|
|
<Form {_bb} {model} {title} {buttonText} wide={false} />
|