1.0.0 • Published 11 months ago

react-dom-navigator v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

react-dom-navigator

This library is a React Typescript module that provides a visual dom tree nodes widget in a window over the page.

How to install:

npm install react-dom-navigator

How to include

Step1: Import JavaScript modules

import { EmbedDomWidget } from 'react-dom-navigator';

To use

Simply add widget component inside your app

Example:

    <App>
      {/* Your main app content */}
      <h1>Welcome to My Website</h1>
      <p style={{ width: 'max-content'}}>This is a sample paragraph.</p>
      {/* ...other content... */}
      
      <EmbedDomWidget />
    </App>

You can use EmbedDomWidget with isDefaultVisible prop if you want to control it's initial appearing state

Example:

    <App>
      {/* Your main app content */}
      
      <EmbedDomWidget isDefaultVisible />
    </App>