Apply prettier over all files

This commit is contained in:
Luis Alvarez
2020-10-01 20:40:40 -05:00
parent 2314ad760a
commit 0ef6449aff
72 changed files with 648 additions and 652 deletions

View File

@@ -13,7 +13,7 @@
}
.separator:before {
content: "";
content: '';
}
.description {

View File

@@ -1,11 +1,11 @@
import cn from "classnames";
import { FunctionComponent } from "react";
import s from "./Featurebar.module.css";
import cn from 'classnames'
import { FunctionComponent } from 'react'
import s from './Featurebar.module.css'
interface Props {
className?: string;
title: string;
description: string;
className?: string
title: string
description: string
}
const Featurebar: FunctionComponent<Props> = ({
@@ -13,14 +13,14 @@ const Featurebar: FunctionComponent<Props> = ({
description,
className,
}) => {
const rootClassName = cn(s.root, className);
const rootClassName = cn(s.root, className)
return (
<div className={rootClassName}>
<span className={s.title}>{title}</span>
<span className={s.separator} />
<span className={s.description}>{description}</span>
</div>
);
};
)
}
export default Featurebar;
export default Featurebar

View File

@@ -1 +1 @@
export { default } from "./Featurebar";
export { default } from './Featurebar'