mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
|
import { HTMLProps } from "react";
|
||
|
import { EditingContext } from "../../contexts/editing";
|
||
|
import { useDefinedContext } from "../../utils/definedContext";
|
||
|
import { Postcard } from "../postcard/Postcard";
|
||
|
|
||
|
|
||
|
export function EditablePostcard({value, ...props}: HTMLProps<HTMLInputElement>) {
|
||
|
const [editing,] = useDefinedContext(EditingContext)
|
||
|
|
||
|
return <>
|
||
|
{editing ?
|
||
|
<input type="file" value={undefined} {...props}/>
|
||
|
: null}
|
||
|
<Postcard src={value}/>
|
||
|
</>
|
||
|
}
|