import React, { PureComponent, Fragment } from 'react'; import { Field } from 'redux-form'; import { Margin } from 'styled-components-spacing'; import { FormGroup, H3 } from 'joyent-ui-toolkit'; import Editor from 'joyent-ui-toolkit/dist/es/editor'; class EditorField extends PureComponent { render() { return ( ); } } export default () => (
); export const Overview = ({ lines }) => ( {lines ? (

{lines} line{lines === 1 ? '' : 's'} of code

) : (

No user script added

)}
);