Skip to content

Commit

Permalink
Fixed import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Dec 12, 2017
1 parent 09a4ef0 commit 9f5b344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Now, I know, that sounds like a lot. Let's see what it looks like!
Here's how you might create a simple `<TodoList>` component:

```js
import MyReact from "my-react"
import MyReact from "@mjackson/my-react"

const displayName = "TodoList"

Expand Down Expand Up @@ -77,7 +77,7 @@ Assuming the above code was saved in `TodoList.js`, you could use it just like
any other React component (see [#usage](Usage) below):

```js
import MyReact from "my-react"
import MyReact from "@mjackson/my-react"
import ReactDOM from "react-dom"
import TodoList from "./TodoList"

Expand All @@ -95,7 +95,7 @@ Note in the following example how `my.timer` is set in `componentDidMount` and
then cleaned up in `componentWillUnmount`.

```js
import MyReact from "my-react"
import MyReact from "@mjackson/my-react"

const displayName = "Counter"

Expand Down

0 comments on commit 9f5b344

Please sign in to comment.