AdminInstallButtonRow.tsx 399 B

1234567891011121314151617
  1. import React from 'react';
  2. type Props = {
  3. onClick: () => void,
  4. disabled: boolean,
  5. }
  6. export const AdminInstallButtonRow = (props: Props): React.ReactElement => {
  7. return (
  8. <div className="row my-3">
  9. <div className="mx-auto">
  10. <button type="button" className="btn btn-primary" onClick={props.onClick} disabled={props.disabled}>Install</button>
  11. </div>
  12. </div>
  13. );
  14. };