mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-29 03:13:19 -05:00
e2a6631b64
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
import { Button } from "@formbricks/ui/Button";
|
|
|
|
declare global {
|
|
interface Window {
|
|
formbricks: any;
|
|
}
|
|
}
|
|
|
|
export const FeedbackButton: React.FC = () => {
|
|
return <Button variant="secondary">Open Feedback</Button>;
|
|
};
|
|
|
|
export default FeedbackButton;
|