workflow.tsx 324 B

1234567891011
  1. import Workflow from "../../../components/task/Workflow";
  2. import { useAppSelector } from "../../../hooks";
  3. import { currentUser } from "../../../reducers/current-user";
  4. const Widget = () => {
  5. const currUser = useAppSelector(currentUser);
  6. return <Workflow studioName={currUser?.realName} />;
  7. };
  8. export default Widget;