'use client'; import { useState } from 'react'; import styles from './page.module.css' import { TextField } from './textfield'; type InspectorProps = { sourceUrl: string, }; export function Inspector(props: InspectorProps) { const [currentString, setCurrentString] = useState(''); return (

Source code is available here. Text entered above is not sent over the network.

{currentString}

) }