mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-18 05:09:23 +00:00
lint everything
This commit is contained in:
@@ -7,9 +7,9 @@ import s from './card.module.scss'
|
||||
export type CardProps = {} & ComponentPropsWithoutRef<'div'>
|
||||
|
||||
export const Card = forwardRef<HTMLDivElement, CardProps>(({ className, ...restProps }, ref) => {
|
||||
const classNames = {
|
||||
root: clsx(s.root, className),
|
||||
}
|
||||
const classNames = {
|
||||
root: clsx(s.root, className),
|
||||
}
|
||||
|
||||
return <div className={classNames.root} ref={ref} {...restProps}></div>
|
||||
return <div className={classNames.root} ref={ref} {...restProps}></div>
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user