// @ts-nocheck import React from 'react'; import { Button, Intent } from '@blueprintjs/core'; import { x } from '@xstyled/emotion'; import { css } from '@emotion/css'; import { useIsDarkMode } from '@/hooks/useDarkMode'; import WorkflowIcon from './WorkflowIcon'; import { FormattedMessage as T } from '@/components'; import withOrganizationActions from '@/containers/Organization/withOrganizationActions'; import { compose } from '@/utils'; /** * Setup congrats page. */ function SetupCongratsPage({ setOrganizationSetupCompleted }) { const [isReloading, setIsReloading] = React.useState(false); const isDarkMode = useIsDarkMode(); const handleBtnClick = () => { setIsReloading(true); window.location.reload(); }; return ( ); } export default compose(withOrganizationActions)(SetupCongratsPage);