components for rendering outputs
npm install @nteract/outputsThis package contains components for rendering different responses from a Jupyter kernel. These components provide support for rendering plain data and rich media (such as images and HTML) data.
```
$ yarn add @nteract/outputs
``
$ npm install --save @nteract/outputs
The example below shows how we can use the ExecuteResult component within this package to render the response to an execution request sent by our Jupyter kernel.
`javascript
import { ExecuteResult } from "@nteract/outputs";
export default () => {
const Plain = props =>
{props.data}; return (
);
};
`
You can view the reference documentation for @nteract/outputs` in the component docs.
If you experience an issue while using this package or have a feature request, please file an issue on the issue board.