Link
The link component wraps its children and makes them clickable elements. There are two exported components:
Link
- wraps any element, effectively making it clickableTextLink
- makes any inline text a link
How to use
import Link, { TextLink } from "@times-components/link";
<Link url="https://thetimes.co.uk" onPress={doSomeNavigation(url)}>
<View style={{ width: 100, height: 100, backgroundColor: "pink" }} />
</Link>
<TextLink url="https://thetimes.co.uk/" onPress={doSomeNavigation(url)}>
The Times
</TextLink>
The link accepts a responsiveLinkStyles
prop that allows
the resulting <a>
tag to be styled responsively.
Contributing
Please read CONTRIBUTING.md before contributing to this
package
Running the code
Please see our main README.md to get the project running locally
Development
The code can be formatted and linted in accordance with the agreed standards.
yarn fmt
yarn lint
Testing
This package uses yarn (latest) to run unit tests on each
platform with jest.
yarn test:web
Visit the official
storybook
to see our available link templates.