# Quick View


# Importing

First import it to your app module or any submodule as you wish

import Quickview from './components/Quickview';

# Example

import Quickview from './components/Quickview';

class App extends Component {
  render() {
    return (
      <div className='App'>
        <Quickview />
      </div>
    );
  }
}

export default withRouter(App);

# Location

This component is located in components/Quickview


# How to toggle

Include the Toggle service as mention here to any external component us wish

Broken Link
/layoutcomponents/quickview/

Then use the following function to open

toggleQuickViewOpen()

Use the following function to close

toggleQuickViewClose()