@uswds/uswds
Version:
Open source UI components and visual style guide for U.S. government websites
15 lines (10 loc) • 320 B
JavaScript
import Component from "./usa-tag.twig";
import { DefaultContent, BigContent } from "./content";
export default {
title: "Components/Tags",
};
const Template = (args) => Component(args);
export const Info = Template.bind({});
Info.args = DefaultContent;
export const Big = Template.bind({});
Big.args = BigContent;