Skip to content

Commit

Permalink
use correct npm org
Browse files Browse the repository at this point in the history
Fixes #144
  • Loading branch information
sebastianbenz committed Dec 7, 2021
1 parent 41953ee commit bede594
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions site/_includes/partials/getting-started/react.njk
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ npm install @bentoproject/bento-fit-text
<div class="bd-react-sample__code">
{% highlight 'jsx' %}
import React from "react";
import { BentoFitText } from "@ampproject/bento-fit-text/react";
import "@ampproject/bento-fit-text/styles.css";
import { BentoFitText } from "@bentoproject/bento-fit-text/react";
import "@bentoproject/bento-fit-text/styles.css";

function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion site/_includes/partials/getting-started/web-component.njk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ npm install @bentoproject/bento-fit-text

<div class="bd-web-component-sample__code">
{% highlight 'html' %}
import '@ampproject/bento-fit-text';
import '@bentoproject/bento-fit-text';
{% endhighlight %}
</div>

Expand Down
2 changes: 1 addition & 1 deletion styleguide/bento-component-doc-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ npm install @bentoproject/bento-component
```

```javascript
import '@ampproject/bento-component';
import '@bentoproject/bento-component';
```

{% endexample %}
Expand Down

0 comments on commit bede594

Please sign in to comment.