/************ Processor: ts ************/ import * as dependency_0 from '@beyond-js/react-widgets/page'; // FILE: controller.d.ts declare namespace ns_controller { import PageReactWidgetController = dependency_0.PageReactWidgetController; import View = ns_views_index.View; class Controller extends PageReactWidgetController { get Widget(): typeof View; } } // FILE: views\implementation.d.ts declare namespace ns_views_implementation { const implementation = "\nexport function TextareaImplementation() {\n\tconst [value, setValue] = React.useState('');\n\n\tfunction handleChange(event) {\n\t\tconst { value: textAreaValue } = event.target;\n\t\tsetValue(textAreaValue);\n\t}\n\n\tfunction handleSubmit(event) {\n\t\tevent.preventDefault();\n // Logic...\n\t}\n\n\treturn (\n\t\t
\n\t\t\t\n\t\t\n\t);\n}"; } // FILE: views\index.d.tsx declare namespace ns_views_index { /// function View(): JSX.Element; } // FILE: views\results.d.tsx declare namespace ns_views_results { /// function Results(): JSX.Element; } export import Controller = ns_controller.Controller; export import View = ns_views_index.View; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };