15 lines
357 B
Plaintext
15 lines
357 B
Plaintext
---
|
|
import { LinkPreview } from '@astro-community/astro-embed-link-preview';
|
|
import Base from '../layouts/Base.astro';
|
|
---
|
|
|
|
<Base title="LinkPreview component example">
|
|
<h2>Default</h2>
|
|
<p>
|
|
<code
|
|
><LinkPreview id="https://astro.build/blog/welcome-world/" /></code
|
|
>
|
|
</p>
|
|
<LinkPreview id="https://astro.build/blog/welcome-world/" />
|
|
</Base>
|