Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoVictor committed May 12, 2022
1 parent b3d539b commit 8898a90
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,15 @@ yarn add @diegovictor/github-profile-summary
```

# Usage
So easy than make a limone:
So easy than make a lemonade:
```js
import React from 'react';
import ReactDOM from 'react-dom';
import ReactDOM from "react-dom/client";
import { ProfileSummary } from '@diegovictor/github-profile-summary';

ReactDOM.render(
<ProfileSummary data={data} />,
document.getElementById('root')
);
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);

```

## Structure
Expand Down

0 comments on commit 8898a90

Please sign in to comment.