@nteract/presentational-components
v3.4.12
Published
pure presentational components for nteract
Downloads
36,110
Readme
@nteract/presentational-components
This package contains React components for rendering inputs, outputs, cells, and other key UI elements within nteract applications.
Installation
$ yarn add @nteract/presentational-components
$ npm install --save @nteract/presentational-components
Usage
The Redux reducer below shows how we can leverage the components within this package to display a cell with an input and output.
import {
Cell,
Input,
Prompt,
Source,
Outputs
} from "@nteract/presentational-components";
export default () => {
return (
<Cell isSelected>
<Input>
<Prompt counter={2} />
<Source language="python">{`print("Hello World")`}</Source>
</Input>
<Outputs>
<pre>Hello World</pre>
</Outputs>
</Cell>
);
};
Documentation
You can view the reference documentation for @nteract/presentational-components
in the component docs.
Support
If you experience an issue while using this package or have a feature request, please file an issue on the issue board and add the pkg:presentational-components
label.