With Twoslash:
tsx
export constMyTitle = () => <h1 >Title</h1 >
Without Twoslash:
tsx
export const MyTitle = () => <h1>Title</h1>
With Twoslash:
jsx
export constMyTitle = () => <h1 >Title</h1 >
Without Twoslash:
jsx
export const MyTitle = () => <h1>Title</h1>