mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
> No issue, just something I noticed # Checklist for submitter If some of the following don't apply, delete the relevant line. <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [x] Manual QA for all new/changed functionality
28 lines
669 B
TypeScript
28 lines
669 B
TypeScript
import Modal from "components/Modal";
|
|
import Spinner from "components/Spinner";
|
|
import { noop } from "lodash";
|
|
import React from "react";
|
|
|
|
const baseClass = "add-fleet-app-software-modal";
|
|
|
|
const AddFleetAppSoftwareModal = () => {
|
|
return (
|
|
<Modal
|
|
className={baseClass}
|
|
title="Add software"
|
|
width="large"
|
|
onExit={noop}
|
|
disableClosingModal
|
|
>
|
|
<>
|
|
<Spinner centered={false} className={`${baseClass}__spinner`} />
|
|
<p>
|
|
Uploading software so that it's available for install. This may
|
|
take a few minutes.
|
|
</p>
|
|
</>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default AddFleetAppSoftwareModal;
|