You've already forked AstralRinth
forked from didirus/AstralRinth
11 lines
239 B
Markdown
11 lines
239 B
Markdown
```svelte example
|
|
<script lang="ts">
|
|
import { FormField } from "omorphia";
|
|
import { TextInput } from "omorphia";
|
|
</script>
|
|
|
|
<FormField label="Favorite color">
|
|
<TextInput placeholder="Enter another color..." />
|
|
</FormField>
|
|
```
|