# Introducing React Navigation for React Native Today we're excited to introduce React Navigation, a flexible navigation library for React Native and web, including customizable views for React Native, routers for any platform, and navigators that make it super easy to get started. We aim to provide a simple and extensible solution which enables developers to share one navigation paradigm for all of their React apps. ## Start Quick with pre-built Navigators A navigator is a React component with a static `.router` declared on it. To make it super easy to get started, React Navigation ships with a few navigator factories, pairing common views with routers. For example, the provided `StackNavigator` makes it easy to use a `CardStack` view and a `StackRouter` together: ```js const MyApp = StackNavigator({ Home: {screen: HomeScreen}, Profile: {screen: ProfileScreen}, }); ``` Each of these screens are just React components, and they can easily set their own title: ```js class HomeScreen extends React.Component { static navigationOptions = { title: 'Home', }; render() { const { navigate } = this.props.navigation; return (