Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 409 Bytes

Link.md

File metadata and controls

27 lines (20 loc) · 409 Bytes

Link

Display a link of a resource openable in device's browser.

Usage

import React, {Component} from 'react';
import {Link} from 'reactors';

export default class MyComponent extends Component {
  render() {
    return (
      <Link href="http://google.com">
        <Text>Go to Google</Text>
      </Link>
    );
  }
}

Props

href: string

The link to open in web browser.