budibase/packages/builder/src/common/ComingSoon.svelte

14 lines
142 B
Svelte
Raw Normal View History

2019-07-13 11:35:57 +02:00
<script>
2020-02-03 10:50:30 +01:00
export let name = ""
2019-07-13 11:35:57 +02:00
</script>
<div>
2020-02-03 10:50:30 +01:00
<h4>Coming Sometime: {name}</h4>
2019-07-13 11:35:57 +02:00
</div>
<style>
2020-02-03 10:50:30 +01:00
h4 {
2019-07-13 11:35:57 +02:00
margin-top: 20px;
2020-02-03 10:50:30 +01:00
}
</style>