-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 一旦RRv7で作り直した #322
base: master
Are you sure you want to change the base?
feat: 一旦RRv7で作り直した #322
Conversation
import * as React from 'react'; | ||
import { cva, type VariantProps } from 'class-variance-authority'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import * as React from 'react'; | |
import { cva, type VariantProps } from 'class-variance-authority'; | |
import { type VariantProps, cva } from 'class-variance-authority'; | |
import type * as React from 'react'; |
@@ -0,0 +1,20 @@ | |||
import { clsx, type ClassValue } from 'clsx'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import { clsx, type ClassValue } from 'clsx'; | |
import { type ClassValue, clsx } from 'clsx'; |
@@ -1,88 +1,40 @@ | |||
import { | |||
isRouteErrorResponse, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
isRouteErrorResponse, |
Links, | ||
Meta, | ||
Outlet, | ||
Scripts, | ||
ScrollRestoration, | ||
useRouteError, | ||
} from '@remix-run/react'; | ||
} from 'react-router'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
} from 'react-router'; | |
isRouteErrorResponse, | |
} from 'react-router'; |
@@ -0,0 +1,144 @@ | |||
import type { Route } from './+types/home'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import type { Route } from './+types/home'; |
@@ -0,0 +1,144 @@ | |||
import type { Route } from './+types/home'; | |||
import { Link } from 'react-router'; | |||
import { Button } from '~/components/ui/button'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import { Button } from '~/components/ui/button'; | |
import { MemberCard } from '~/components/MemberCard'; | |
import { Button } from '~/components/ui/button'; |
import { Link } from 'react-router'; | ||
import { Button } from '~/components/ui/button'; | ||
import { MEMBERS } from '~/const'; | ||
import { MemberCard } from '~/components/MemberCard'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import { MemberCard } from '~/components/MemberCard'; |
import { MEMBERS } from '~/const'; | ||
import { MemberCard } from '~/components/MemberCard'; | ||
import stylesheet from '~/home/style.css?url'; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Biome] reported by reviewdog 🐶
import type { Route } from './+types/home'; | |
No description provided.