forked from github/plane
2f2caaaf6e
* Dev: Github integration with issues and layout integration * dev: Github Integration route and UI configuration
28 lines
853 B
TypeScript
28 lines
853 B
TypeScript
import { FC } from "react";
|
|
// types
|
|
import { IIntegrationData } from "components/integration";
|
|
|
|
type Props = { state: IIntegrationData; handleState: (key: string, valve: any) => void };
|
|
|
|
export const GithubConfirm: FC<Props> = ({ state, handleState }) => (
|
|
<>
|
|
<div>Confirm</div>
|
|
<div className="mt-5 flex items-center justify-between">
|
|
<button
|
|
type="button"
|
|
className={`rounded-sm bg-gray-300 px-3 py-1.5 text-sm transition-colors hover:bg-opacity-80`}
|
|
onClick={() => handleState("state", "migrate-users")}
|
|
>
|
|
Back
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className={`rounded-sm bg-theme px-3 py-1.5 text-sm text-white transition-colors hover:bg-opacity-80`}
|
|
onClick={() => handleState("state", "migrate-confirm")}
|
|
>
|
|
Next
|
|
</button>
|
|
</div>
|
|
</>
|
|
);
|