-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,36 @@ | ||
<script> | ||
import AbstractContent from '$lib/components/AbstractContent.svelte'; | ||
import DummyDropdown from '$lib/components/DummyDropdown.svelte'; | ||
import AbstractDropdown from '$lib/components/AbstractDropdown.svelte'; | ||
import { DropdownDataElement } from '$lib/js/dropdowndata.js'; | ||
const defaultOptions = ['gar nicht', 'ansatzweise', 'weitgehend', 'zuverlässig']; | ||
const dropdownData = [ | ||
new DropdownDataElement( | ||
'standing up', | ||
defaultOptions, | ||
'How well can the child stand up from sitting or crawling around and how readily is it able to do so' | ||
), | ||
new DropdownDataElement( | ||
'making a mess', | ||
defaultOptions, | ||
'This describes how efficiently the child can distribute toys in every single corner of every single room in the house' | ||
), | ||
new DropdownDataElement( | ||
'gripping a pen the right way', | ||
defaultOptions, | ||
'How well can the child hold a pen or pencil and how coordinated can it use it' | ||
), | ||
new DropdownDataElement( | ||
'talking in full sentences', | ||
defaultOptions, | ||
'How well articulated is the child in its speech and how well can it express itself' | ||
) | ||
]; | ||
const heading = 'some dummy dropdown page'; | ||
</script> | ||
|
||
<AbstractContent showBottomNavbar={true} lastPage="/" nextPage="/" infoPage="/info"> | ||
<DummyDropdown /> | ||
<AbstractDropdown {dropdownData} {heading} /> | ||
</AbstractContent> |