import { displayFlex, styled } from '@/styles'; import Loading from '@/components/loading'; import Modal from '@/ui/modal'; import { useState } from 'react'; import { Button } from '@/ui/button'; import { FavouritedIcon } from '@blocksuite/icons'; import { toast } from '@/ui/toast'; export const StyledHeader = styled('div')({ height: '60px', width: '100vw', ...displayFlex('space-between', 'center'), position: 'relative', padding: '0 22px', borderBottom: '1px solid #e5e5e5', }); const Affine = () => { const [show, setShow] = useState(false); return ( <> { setShow(false); }} >
hi
); }; export default Affine;