mirror of
https://github.com/vercel/commerce.git
synced 2025-07-31 05:51:23 +00:00
Apply prettier over all files
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
}
|
||||
|
||||
.separator:before {
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
|
||||
.description {
|
||||
|
@@ -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
|
||||
|
@@ -1 +1 @@
|
||||
export { default } from "./Featurebar";
|
||||
export { default } from './Featurebar'
|
||||
|
Reference in New Issue
Block a user