Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@nteract/presentational-components

captainsafia129.8kBSD-3-Clause3.4.12TypeScript support: included

pure presentational components for nteract

nteract, components

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.

License

BSD-3-Clause