Sha256: dd6ccceb0685d88589ee8f9aa31c5f97630ff710ea5be53db196aded78d8857f
Contents?: true
Size: 598 Bytes
Versions: 38
Compression:
Stored size: 598 Bytes
Contents
import React from 'react' import { Button } from '../../' const ButtonDefault = () => ( <div> <Button onClick={() => alert('button clicked!')} text="Button Primary" /> <Button onClick={() => alert('button clicked!')} text="Button Secondary" variant="secondary" /> <Button onClick={() => alert('button clicked!')} text="Button Link" variant="link" /> <Button disabled onClick={() => alert('button clicked!')} text="Button Disabled" /> </div> ) export default ButtonDefault
Version data entries
38 entries across 38 versions & 1 rubygems