Skip to content

Commit 8c7321e

Browse files
authored
Add "from" to import statement (#2)
1 parent 96be07e commit 8c7321e

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
@@ -23,7 +23,7 @@ To get started with the SDK, you can create a personal access token from the web
2323
You can use this token to make API calls for your own Zeplin account.
2424

2525
```js
26-
import { ZeplinApi, Configuration } "@zeplin/sdk";
26+
import { ZeplinApi, Configuration } from "@zeplin/sdk";
2727

2828
const zeplinClient = new ZeplinApi(new Configuration({ accessToken: "ACCESS_TOKEN" }));
2929

@@ -43,7 +43,7 @@ The SDK exposes Zeplin API endpoints as methods. These methods are grouped into
4343

4444
For example:
4545
```js
46-
import { ZeplinApi, Configuration, ScreenNoteColorNameEnum } "@zeplin/sdk";
46+
import { ZeplinApi, Configuration, ScreenNoteColorNameEnum } from "@zeplin/sdk";
4747

4848
const zeplinClient = new ZeplinApi(new Configuration({ accessToken: "ACCESS_TOKEN" }));
4949

0 commit comments

Comments
 (0)