mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
11 lines
207 B
JavaScript
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 />;
|
||
|
};
|