This package contains common layout and features like user tracking, feedback, and errors logging for Cube's [example applications](https://github.com/cube-js/cube.js/tree/master/examples).
npm install @cube-dev/example-wrapperThis package contains common layout and features like user tracking, feedback, and errors logging for Cube's example applications.
Install package via yarn:
``bash`
yarn add @cube-dev/example-wrapper
At the entry point of your app, import createExampleWrapper helper:
`js`
import createExampleWrapper from "@cube-dev/example-wrapper";
Define an example description object and fill it with your values:
`jsdemo description text
const exampleDescription = {
title: "demo title",
text: ,`
};
Note: you can use HTML tags inside the text template string.
Call helper and pass exampleDescription into it:
`js``
createExampleWrapper(exampleDescription);