mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
|
import { useEffect } from "react"
|
||
|
import { useDefinedContext } from "../../utils/definedContext"
|
||
|
import { PostcardContext } from "./PostcardContext"
|
||
|
|
||
|
export function usePostcardImage(image: string) {
|
||
|
const { setImage } = useDefinedContext(PostcardContext)
|
||
|
|
||
|
useEffect(
|
||
|
() => {
|
||
|
setImage(image)
|
||
|
},
|
||
|
[image]
|
||
|
)
|
||
|
}
|