-
Notifications
You must be signed in to change notification settings - Fork 445
Closed
Description
A change that was also made in the create-react-app template (and approved by Dan Abramov)
Long detailed explanation here: facebook/create-react-app#8177
Change proposal:
import React from 'react'
interface Props {
}
const Component: React.FC<Props> = () => {
return (
<div>
</div>
)
}
export default Component
to
import React from 'react'
interface Props {
}
const Component = (props: Props) => {
return (
<div>
</div>
)
}
export default Component
Metadata
Metadata
Assignees
Labels
No labels