slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
22 lines (21 loc) • 557 B
JavaScript
import { GamepadOverlay } from "./GamepadOverlay";
// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
const meta = {
title: "Example/GamepadOverlay",
component: GamepadOverlay,
parameters: {
layout: "centered",
},
};
export default meta;
// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args
export const Primary = {
args: {
count: 11,
},
};
export const Secondary = {
args: {
count: 50,
},
};