- No pagination at the moment. - Sorting isn't functional yet. - Search works - we only have mocks for searching 'gdp' param.
4 lines
135 B
TypeScript
4 lines
135 B
TypeScript
export default function Total({ total }) {
|
|
return <h1 className="text-4xl font-semibold text-primary">{ total } results found</h1>
|
|
}
|