mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 07:10:41 +00:00
18 lines
403 B
TypeScript
18 lines
403 B
TypeScript
import { Footer, GeneratorList } from '../components/index.js'
|
|
import { useLocale, useTitle } from '../contexts/index.js'
|
|
|
|
interface Props {
|
|
path?: string
|
|
}
|
|
export function Generators({}: Props) {
|
|
const { locale } = useLocale()
|
|
useTitle(locale('title.generators'))
|
|
|
|
return <main>
|
|
<div class="legacy-container">
|
|
<GeneratorList predicate={gen => !gen.partner} />
|
|
</div>
|
|
<Footer />
|
|
</main>
|
|
}
|