add lint js
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import React, {FC} from "react";
|
||||
import {PropsWithChildren} from "react";
|
||||
import React, {FC} from "react"
|
||||
import {PropsWithChildren} from "react"
|
||||
|
||||
const Card: FC<PropsWithChildren<CardProps>> = ({children, className = ''}) => {
|
||||
|
||||
return <div className={`${className} border m-1 rounded py-1 px-2`}>
|
||||
return <div className={`${className} m-1 rounded border px-2 py-1`}>
|
||||
{children}
|
||||
</div>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user