This commit is contained in:
Timothy J. Baek 2024-06-24 12:23:12 -07:00
parent 345b3491a7
commit 9fb30d4787

View File

@ -10,11 +10,12 @@
import { python } from '@codemirror/lang-python';
import { oneDark } from '@codemirror/theme-one-dark';
import { onMount, createEventDispatcher } from 'svelte';
import { onMount, createEventDispatcher, getContext } from 'svelte';
import { formatPythonCode } from '$lib/apis/utils';
import { toast } from 'svelte-sonner';
const dispatch = createEventDispatcher();
const $i18n = getContext('i18n');
export let boilerplate = '';
export let value = '';