This repo uses poe-item-parser under the hood to generate the properties needed to display the items.
Install with your favorite package manager:
npm install poe-item-display --save
Important
Currently only React is supported. More frameworks coming SOON!
const exampleItem = `CTRL-C item from in-game`;
import { PoE2Item } from 'poe-item-display/react';
function MyFancyItem() {
return (
<PoE2Item item={exampleItem} />
)
}
This is an example of how the item will look like in practice