1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/pages/first-time-flow/end-of-flow/end-of-flow.stories.js
Etienne Dusseault 28708e3a2e
Add first time flow components to Storybook (#11655)
* end of first time flow

* metametrics first time flow

* select-action

* welcome
2021-08-30 12:59:56 -10:00

11 lines
207 B
JavaScript

import React from 'react';
import EndOfFlowScreen from './end-of-flow.component';
export default {
title: 'First Time Flow',
};
export const EndOfFlowComponent = () => {
return <EndOfFlowScreen />;
};