| 3 | import ReactDOM from "react-dom/client"; |
| 4 | |
| 5 | interface Comment { |
| 6 | author: string; |
| 7 | text: string; |
| 8 | } |
| 9 | |
| 10 | function App() { |
| 11 | const [comments, setComments] = useState<Comment[]>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected