2021-08-16 21:03:10 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-06-14 19:01:00 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { BackboneHost } from './BackboneHost';
|
|
|
|
|
|
|
|
export const Install = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<BackboneHost
|
|
|
|
className="full-screen-flow"
|
|
|
|
View={window.Whisper.InstallView}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|