Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Jan 11, 2022
1 parent 7b8d597 commit 5680afd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Goal

The goal of [RNN Screens](https://github.com/kanzitelli/rnn-screens) is to provide React Native developers with more simplified and predictable way of Navigation. It's build on top of [React Native Navigation](https://github.com/wix/react-native-navigation).
The goal of [RNN Screens](https://github.com/kanzitelli/rnn-screens) is to provide React Native developers with more simplified and predictable Navigation. It's built on top of [React Native Navigation](https://github.com/wix/react-native-navigation).

## Quick start

Expand Down Expand Up @@ -46,9 +46,7 @@ const Main: ScreenComponent = ({componentId}) => {
return <>...</>;
};

type SettingsProps = {
type: 'push' | 'show';
};
type SettingsProps = {type: 'push' | 'show'};
const Settings: ScreenComponent<SettingsProps> = ({componentId, type}) => {
return <>...</>;
};
Expand Down

0 comments on commit 5680afd

Please sign in to comment.