# G6 React Node > Using React Component to custom your g6 node ## Docs [https://dicegraph.github.io/](https://dicegraph.github.io/g6-react-node) ## Example ```jsx import { Group, Rect, Text, Circle, Image, createNodeFromReact, } from '@antv/g6-react-node'; const ReactNode = ({ cfg = {} }) => { const { description, meta = {}, label = 'label' } = cfg; return ( {label} Desc: {description} Creator: {meta.creatorName} ); }; G6.registerNode('yourNode', createNodeFromReact(ReactNode)); ```