Skip to content

Commit

Permalink
chore(link): Update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
zenorocha committed Oct 13, 2022
1 parent 75c0183 commit f90cb2d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/link/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![React Email img cover](https://react.email/static/images/readme/covers/a.png)
![React Email link cover](https://react.email/static/images/readme/covers/link.png)

<div align="center"><strong>@react-email/a</strong></div>
<div align="center"><strong>@react-email/link</strong></div>
<div align="center">A hyperlink to web pages, files, email addresses, or anything else a URL can address.</div>
<br />
<div align="center">
Expand All @@ -18,24 +18,24 @@ Install component from your command line.
#### With yarn

```sh
yarn add @react-email/a -E
yarn add @react-email/link -E
```

#### With npm

```sh
npm install @react-email/a -E
npm install @react-email/link -E
```

## Getting started

Add the component to your email template. Include styles where needed.

```jsx
import { A } from '@react-email/a';
import { Link } from '@react-email/link';

const Email = () => {
return <A href="https://example.com">Example</A>;
return <Link href="https://example.com">Example</Link>;
};
```

Expand Down

0 comments on commit f90cb2d

Please sign in to comment.