Gift Egwuenu 5de8ace421 [setup][s]-setup code formatting with prettier
- add husky and lint-stages for pre-commit hooks
 - format entire codebase using `yarn format`
2020-06-17 13:07:00 +01:00

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>
);
}