lucid-ui
Version:
A UI component library from AppNexus.
23 lines (22 loc) • 2.18 kB
JavaScript
import React from 'react';
import { SidePanel } from '../../../index';
export default class extends React.Component {
constructor(props, state) {
super(props, state);
this.state = { isExpanded: true };
this.handleToggle = this.handleToggle.bind(this);
}
handleToggle() {
this.setState({
isExpanded: !this.state.isExpanded,
});
}
render() {
return (React.createElement("section", null,
React.createElement("p", null, "prevent resizing width by hiding the resizer"),
React.createElement("button", { onClick: this.handleToggle }, "Toggle SidePanel"),
React.createElement(SidePanel, { isResizeDisabled: true, isExpanded: this.state.isExpanded, onCollapse: this.handleToggle, Header: 'Stumptown keytar schlitz' },
React.createElement("p", null, "Stumptown keytar schlitz, vinyl vexillologist humblebrag sartorial crucifix cornhole. Four dollar toast 8-bit taiyaki asymmetrical helvetica kitsch farm-to-table thundercats. Occupy hammock waistcoat pabst ethical. Sartorial umami cardigan, farm-to-table bespoke 90's schlitz cray drinking vinegar actually freegan bushwick wolf. Shabby chic tofu celiac shaman, twee af squid blue bottle street art. Lumbersexual lo-fi stumptown, iceland locavore tacos chillwave portland beard celiac polaroid."),
React.createElement("p", null, "Keffiyeh kinfolk lumbersexual, austin ennui sustainable mlkshk four loko selfies ramps pop-up coloring book before they sold out yuccie biodiesel. Yuccie taxidermy beard, +1 church-key umami echo park synth. Fanny pack farm-to-table pok pok, next level trust fund live-edge asymmetrical art party intelligentsia listicle sriracha. Tote bag ugh meggings, selfies vegan blog locavore messenger bag chambray etsy heirloom cronut enamel pin hammock umami. Bushwick venmo activated charcoal, mumblecore skateboard hashtag literally brooklyn etsy ennui 3 wolf moon. Before they sold out blog iPhone subway tile, truffaut dreamcatcher organic raclette portland whatever brooklyn succulents flexitarian gentrify cray. Kogi subway tile gochujang dreamcatcher."))));
}
}