anuveyatsu 5a94d9d368 [search][xl]: initial search page with essential components.
- No pagination at the moment.
- Sorting isn't functional yet.
- Search works - we only have mocks for searching 'gdp' param.
2020-06-12 14:49:12 +06:00

4 lines
135 B
TypeScript

export default function Total({ total }) {
return <h1 className="text-4xl font-semibold text-primary">{ total } results found</h1>
}