fix(storybook): remove cubes storybook

It wasn't adding much value and requires a mock Clan context which is a lot of effort at the min.
This commit is contained in:
Brian McGee
2025-09-30 11:48:12 +01:00
parent 9cc85b36c6
commit feef0a513e

View File

@@ -1,15 +0,0 @@
import { Meta, StoryObj } from "@kachurun/storybook-solid";
import { CubeScene } from "./cubes";
const meta: Meta = {
title: "scene/cubes",
component: CubeScene,
};
export default meta;
type Story = StoryObj;
export const Default: Story = {
args: {},
};