diff --git a/README.md b/README.md index 787ff77..99ada3b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A Tab View component for React Native. ### Installation Open a Terminal in the project root and run: - yarn add rnative-tabs + yarn add @tatil/react-native-tabs ### Quick Start @@ -17,11 +17,12 @@ Basic usage look like this: ```JS import React, { Component } from 'react'; +import Tabs from '@tatil/react-native-tabs'; class Index extends Component { render() { return ( - + Merhaba burası ana sayfa! @@ -29,7 +30,7 @@ class Index extends Component { Merhaba burası İletişim! - + ) } }