slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
16 lines (15 loc) • 333 B
JavaScript
import { GameCard } from "./GameCard";
import { massAppealDeck } from "../../cardDecks/massAppealDeck";
const meta = {
title: "GameCard/GameCard",
component: GameCard,
parameters: {
layout: "centered",
},
};
export default meta;
export const Primary = {
args: {
card: massAppealDeck[0],
},
};