Open1
svelteでのprops取得
svelteでは$props()で取得できるみたい。
オブジェクトがreturnされる時は、キーを一つ一つ取れるので効率的にかける
こう書ける
interface Props {
position?: TimelinePosition;
style?: string;
children?: import('svelte').Snippet;
}
let { position = 'right', style = null, children }: Props = $props();