Move components out of /pages into /components

This commit is contained in:
James Grugett 2022-08-30 23:53:12 -05:00
parent 849402ed70
commit ccb6fd291e
3 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@ import { GroupLinkItem } from '../../groups'
import { SiteLink } from 'web/components/site-link'
import { useUser } from 'web/hooks/use-user'
import { useMemberGroups } from 'web/hooks/use-group'
import { DoubleCarousel } from './_double-carousel'
import { DoubleCarousel } from '../../../components/double-carousel'
import clsx from 'clsx'
import { Button } from 'web/components/button'
import { ArrangeHome } from './_arrange-home'
import { ArrangeHome } from '../../../components/arrange-home'
import { Title } from 'web/components/title'
import { Row } from 'web/components/layout/row'