Ran prettier fix

This commit is contained in:
Luis Alvarez
2021-01-22 12:17:39 -05:00
parent bccef99c35
commit 8784e05183
13 changed files with 129 additions and 96 deletions

View File

@@ -13,9 +13,9 @@ const Container: FC<Props> = ({ children, className, el = 'div', clean }) => {
'mx-auto max-w-8xl px-6': !clean,
})
let Component: React.ComponentType<React.HTMLAttributes<
HTMLDivElement
>> = el as any
let Component: React.ComponentType<
React.HTMLAttributes<HTMLDivElement>
> = el as any
return <Component className={rootClassName}>{children}</Component>
}