8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
export default function Total({ total }) {
|
|
return (
|
|
<h1 className="text-3xl font-semibold text-primary my-6 inline-block">
|
|
{ total } results found
|
|
</h1>
|
|
)
|
|
}
|