Skip to main content

React Native library

For React Native applications, the @tairu/react-native package exposes a Tile component to load and render Tiles.

Installation

npm install @tairu/react-native

Usage

The Tile component simply needs to be provided the Tile URL to load and render:

import { Tile } from '@tairu/react-native'

function MyComponent() {
return <Tile url="http://localhost:3210" />
}