slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
15 lines (14 loc) • 413 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Test } from "./Test";
const meta = {
component: Test,
};
export default meta;
/*
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
* See https://storybook.js.org/docs/api/csf
* to learn how to use render functions.
*/
export const Primary = {
render: () => _jsx(Test, { count: 2 }),
};