| 1234567891011121314151617 |
- import React 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>
- );
- };
|