Spaces:
Sleeping
Sleeping
File size: 236 Bytes
d2aab3f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<script>
export let data = {
config: {
foo: 'bar'
}
};
</script>
<h1>
Welcome to the config page! This config is loaded from the python server backing this application.
</h1>
<pre>{JSON.stringify(data.config, null, 2)}</pre>
|