i am currently making a simple react application. this is my index.tsx
index.tsx
import * as React from \'react\'; import * as ReactDOM from \'react-dom\
The issue is that you are not exporting the interface, you should always export the interface props. So:
export interface Props { term: string; }
Is the solution.