import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import WorkflowIcon from './WorkflowIcon'; import { FormattedMessage as T } from 'components'; import withOrganizationActions from 'containers/Organization/withOrganizationActions'; import { compose } from 'utils'; import 'style/pages/Setup/Congrats.scss'; /** * Setup congrats page. */ function SetupCongratsPage({ setOrganizationSetupCompleted }) { const [isReloading, setIsReloading] = React.useState(false); const handleBtnClick = () => { setIsReloading(true); window.location.reload(); }; return (