11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import { de } from '../strings/de'
|
|
|
|
export default function WuerfeListPage() {
|
|
// Fleshed out in the next FEAT-3 increment (Gridify list, year filter, sort).
|
|
return (
|
|
<section className="page">
|
|
<h2>{de.pages.litters.title}</h2>
|
|
</section>
|
|
)
|
|
}
|