Skip to content

Commit 0e446c4

Browse files
authored
no period before filename
1 parent 12c2429 commit 0e446c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Since the return type of most React components is generally either *JSX.Element*
105105
Now we don't need to explicitly state our function return types everywhere. We will also disable [react/react-in-jsx-scope](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/react-in-jsx-scope.md) since importing React is [no longer needed](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html) in every file.
106106

107107
Next, we need to get our linting script to parse <i>*.tsx </i> files, which are the TypeScript equivalent of React's JSX files.
108-
We can do that by altering our lint command in <i>.package.json</i> to the following:
108+
We can do that by altering our lint command in <i>package.json</i> to the following:
109109

110110
```json
111111
{

0 commit comments

Comments
 (0)