blob: a8653b33ad41d988c0c72a110883e870c8619c0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import Layout from '../layouts/Layout.astro';
import FFXIVItemPrice from '../components/FFXIVItemPrice';
import FFXIVWorldSelector from '../components/FFXIVWorldSelector';
---
<Layout title="FFXIV-MDX-React-Components">
<h1>FFXIV-MDX-React-Components</h1>
<p>FFXIV-MDX-React-Components is a collection of components for Final Fantasy XIV related data. It is built with MDX and React.</p>
<FFXIVWorldSelector client:load message="Set your home world to get crowdsourced marketboard information!" />
<br/>
<FFXIVItemPrice client:load itemId={10393} itemName="Thavnairian Bustier" itemImageUrl="https://www.garlandtools.org/files/icons/item/42441.png" />
</Layout>
|