// Copyright (c) Meta Platforms, Inc. and affiliates. // All rights reserved. // This source code is licensed under the license found in the // LICENSE file in the root directory of this source tree. import React, { useState } from "react"; import { modelInputProps } from "../helpers/Interfaces"; import AppContext from "./createContext"; const AppContextProvider = (props: { children: React.ReactElement>; }) => { const [clicks, setClicks] = useState | null>(null); const [image, setImage] = useState(null); const [maskImg, setMaskImg] = useState(null); return ( {props.children} ); }; export default AppContextProvider;