You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/deconflict-non-helpers/main.svelte

15 lines
282 B

<script>
import { addCss, addedCss, applyComputations, renderMainFragment } from './module.js';
export let value = addCss + addedCss + applyComputations + renderMainFragment;
export function compute() {
return value.toUpperCase();
}
</script>
{compute()}
<style>
</style>