@financial-times/n-conversion-forms
Version:
Containing jsx components and styles for forms included on Accounts and Acquisition apps (next-signup, next-profile, next-retention, etc).
21 lines (17 loc) • 414 B
JavaScript
import React from 'react';
import { Debug } from './debug';
export default {
title: 'Debug helpers',
component: Debug,
};
export const Basic = (args) => <Debug {...args} />;
Basic.args = {
isTest: true,
showHelpers: true,
};
export const WithCustomCountries = (args) => <Debug {...args} />;
WithCustomCountries.args = {
isTest: true,
showHelpers: true,
countries: ['GBR', 'USA', 'JPN', 'FRA', 'CAN'],
};