12-Link.stories.tsx 430 B

1234567891011121314151617
  1. import React from "react"
  2. import { Link } from "./../src"
  3. export default {
  4. title: "Link",
  5. component: Link
  6. }
  7. export const Default = () =>
  8. <div style={{ backgroundColor: "black", padding: "50px 20px" }}>
  9. <Link to="path">Go to path</Link>
  10. </div>
  11. export const Disabled = () =>
  12. <div style={{ backgroundColor: "black", padding: "50px 20px" }}>
  13. <Link to="www.google.com" disabled={true}>Go to Google</Link>
  14. </div>