@fremtind/jkl-feedback-react
Version:
Jøkul react feedback component
10 lines (9 loc) • 374 B
TypeScript
import { WithChildren } from "@fremtind/jkl-core";
import React from "react";
import { FollowupState } from "../types";
export declare const useFollowUpContext: () => FollowupState | undefined;
interface FollowupContextProviderProps extends WithChildren {
state: FollowupState;
}
export declare const FollowUpProvider: React.FC<FollowupContextProviderProps>;
export {};