chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,4 +1,4 @@
import classNames from 'clsx'
import classNames from "clsx"
export interface MainProps {
className?: string
@ -10,8 +10,8 @@ export const Main: React.FC<React.PropsWithChildren<MainProps>> = (props) => {
return (
<main
className={classNames(
'flex flex-1 flex-col items-center justify-center py-8',
className
"flex flex-1 flex-col items-center justify-center py-8",
className,
)}
>
{children}

View File

@ -1 +1 @@
export * from './Main'
export * from "./Main"