Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 11f256a

Browse files
author
Orta
authored
Merge pull request #56 from soroushchehresa/master
Remove additional semicolons
2 parents ea719cf + e872948 commit 11f256a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ This is caused by a failure to import the default export from React as well as a
7575
Open `App.tsx` and modify the import at the top of the file:
7676

7777
```diff
78-
-import React, { Component } from 'react';
78+
-import React, { Component } from 'react'
7979
+import React from 'react'
80-
+import { Component } from 'react';
80+
+import { Component } from 'react'
8181
```
8282

8383
Some of this has to do with differences in how Babel and TypeScript interoperate with CommonJS modules.

0 commit comments

Comments
 (0)