1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/first-time-flow/select-action/select-action.stories.js
George Marshall 854fc71ae7
Organizing storybook to echo app folder structure (#12796)
* Organizing storybook to echo app folder structure

* Updating new stories to follow new convention from develop
2021-12-01 11:27:57 -08:00

14 lines
269 B
JavaScript

import React from 'react';
import SelectAction from './select-action.component';
export default {
title: 'Pages/FirstTimeFlow/SelectAction',
id: __filename,
};
export const DefaultStory = () => {
return <SelectAction />;
};
DefaultStory.storyName = 'Default';