12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
|
import React from 'react';
|
||
|
import { BackboneHost } from './BackboneHost';
|
||
|
|
||
|
export const StandaloneRegistration = (): JSX.Element => {
|
||
|
return (
|
||
|
<BackboneHost
|
||
|
className="full-screen-flow"
|
||
|
View={window.Whisper.StandaloneRegistrationView}
|
||
|
/>
|
||
|
);
|
||
|
};
|