How to use the idyll-components.Link function in idyll-components

To help you get started, we’ve selected a few idyll-components examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github idyll-lang / idyll / packages / idyll-docs / idyll-components / contents.js View on Github external
}
        },
        {
          Header: {
            thumbnail: 'header.png',
            component: COMPONENTS.Header,
            description:
              'This component makes it easy to add a title, subtitle, and byline to your article:',
            image: 'header.png',
            liveExample: true
          }
        },
        {
          Link: {
            thumbnail: 'link.png',
            component: COMPONENTS.Link,
            description:
              'This component just acts as syntactic sugar for displaying links inline in your text.',
            liveExample: true
          }
        },
        {
          SVG: {
            thumbnail: 'svg.png',
            component: COMPONENTS.SVG,
            description:
              'This component will display an SVG file inline using https://github.com/matthewwithanm/react-inlinesvg. This makes it easy to style the SVG with css, as opposed to displaying the svg inside of an image tag.',
            liveExample: true
          }
        },
        {
          Table: {