import React, { PropTypes } from 'react' ToggleButton.propTypes = { checked: PropTypes.bool.isRequired, onToggle: PropTypes.func.isRequired, text: PropTypes.string.isRequired } export default function ToggleButton({ checked, onToggle, text }) { return (
  {text}
) } er'> cgit logo index : iCE40/yosys
clone of https://github.com/YosysHQ/yosys
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lut/check_map_lut6.ys
blob: 8a32e4d106bc681ad9320bae2310dc5af47e25c8 (plain)
1
2
3
4
5
6
7