import 'svelte/internal/disclose-version';
import 'svelte/internal/flags/legacy';
import * as $ from 'svelte/internal/client';
import Octo from "./Octo.svelte";
import { reducedMotion } from "./stores";
var root = $.template(`<h1>What is an Octahedron?</h1> <div class="scene-container svelte-1wq6r9e"><!></div> <p>An octahedron is a three-dimensional shape having eight plane faces, especially a regular solid figure with eight equal triangular faces.</p> <p><code> </code></p>`, 1);
export default function App($$anchor) {
const [$$stores, $$cleanup] = $.setup_stores();
const $reducedMotion = () => $.store_get(reducedMotion, '$reducedMotion', $$stores);
var fragment = root();
var div = $.sibling($.first_child(fragment), 2);
var node = $.child(div);
Octo(node, {});
$.reset(div);
var p = $.sibling(div, 4);
var code = $.child(p);
var text = $.child(code);
$.reset(code);
$.reset(p);
$.template_effect(() => $.set_text(text, `prefers-reduced-motion: ${$reducedMotion() ?? ''}`));
$.append($$anchor, fragment);
$$cleanup();
}