]>
Commit | Line | Data |
---|---|---|
38431710 RBR |
1 | <script context="module"> |
2 | export async function load({ page }) { | |
3 | return { | |
4 | props: { | |
5 | locale: page.params.locale | |
6 | } | |
7 | } | |
8 | } | |
9 | </script> | |
10 | <script> | |
11 | import NewPrompt from '$lib/components/new_prompt.svelte'; | |
12 | export let locale; | |
13 | </script> | |
14 | <NewPrompt locale={locale} /> |