server-landing-pages/src/_components/image.tsx
Sam Therapy 338c145739
Change to lume
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-09-25 19:02:59 +02:00

5 lines
148 B
TypeScript

export default (o: { char: string }) => (
//{/* @ts-ignore */}
<img alt={o.char as string} src={`../img/${o.char as string}.webp`} inline />
);