personal-website/keystatic/content-components/ImageInput.tsx
2024-04-15 14:54:57 +02:00

6 lines
211 B
TypeScript

import type { FormFieldInputProps } from '@keystatic/core';
export default function ImageInput(props: FormFieldInputProps<any>) {
return <input type="file" value={props.value} onChange={props.onChange} />;
}