| 1234567891011121314151617181920212223 |
- import React, { type JSX } from 'react';
- type Props = {
- onClick: () => void;
- disabled: boolean;
- };
- export const AdminInstallButtonRow = (props: Props): JSX.Element => {
- return (
- <div className="row my-3">
- <div className="mx-auto">
- <button
- type="button"
- className="btn btn-primary"
- onClick={props.onClick}
- disabled={props.disabled}
- >
- Install
- </button>
- </div>
- </div>
- );
- };
|