- add husky and lint-stages for pre-commit hooks - format entire codebase using `yarn format`
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
export default function Total({ total }) {
|
|
return (
|
|
<h1 className="text-3xl font-semibold text-primary my-6 inline-block">
|
|
{total} results found
|
|
</h1>
|
|
);
|
|
}
|