built frontend

This commit is contained in:
Abubakar Abid 2022-03-25 22:59:40 -07:00
commit 152ad48d9a
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"></script>
<title>Gradio</title>
<script type="module" crossorigin src="./assets/index.0fcbe233.js"></script>
<script type="module" crossorigin src="./assets/index.2bff5a23.js"></script>
<link rel="modulepreload" href="./assets/vendor.906e418a.js">
<link rel="stylesheet" href="./assets/index.cdf32a5f.css">
</head>

View File

@ -2,7 +2,7 @@
import { createEventDispatcher } from "svelte";
import { Markdown } from "@gradio/markdown";
export let label: string;
export let value: string;
export let default_value: string;
export let theme: string;
export let style: string | null;
@ -11,4 +11,4 @@
$: label, dispatch("change");
</script>
<Markdown {value} {theme} {style} on:change />
<Markdown value={default_value} {theme} {style} on:change />