mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 13:47:06 +01:00
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
|
import React from 'react';
|
||
|
import Welcome from './welcome.component';
|
||
|
|
||
|
export default {
|
||
|
title: 'First Time Flow',
|
||
|
};
|
||
|
|
||
|
export const WelcomeComponent = () => {
|
||
|
return <Welcome />;
|
||
|
};
|