Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
---
|
|
import { default as Picture, type Props as PictureProps } from './Picture.astro';
|
|
|
|
type Props = PictureProps;
|
|
|
|
const { class: className, ...props } = Astro.props;
|
|
---
|
|
|
|
{/* Applying class outside of the spread prevents it from applying unnecessary astro-* classes */}
|
|
|
|
<Picture {...props} class={className} />
|