reactjs/react-navigation -> react-community/react-navigation

This commit is contained in:
Adam Miskiewicz
2017-01-26 13:16:26 -08:00
parent a6b168d5a7
commit b5c485d841
10 changed files with 26 additions and 26 deletions

View File

@@ -22,7 +22,7 @@ const NavigationLinks = ({navigation, className, reverse}) => {
);
}),
<a href="https://github.com/reactjs/react-navigation" key="github">
<a href="https://github.com/react-community/react-navigation" key="github">
GitHub
</a>,
];

View File

@@ -4,11 +4,11 @@ const Footer = () => (
<div className="footer"><div className="inner-footer">
<section className="copyright">
<a href="https://github.com/reactjs/react-navigation">
<a href="https://github.com/react-community/react-navigation">
React Navigation
</a>
·
<a href="https://github.com/reactjs/react-navigation/blob/master/LICENSE">
<a href="https://github.com/react-community/react-navigation/blob/master/LICENSE">
Distributed under BSD License
</a>
</section>

View File

@@ -105,7 +105,7 @@ class PageWithSidebar extends Component {
<div className="main-section">
<ActiveScreen navigation={this.props.navigation} />
<hr />
{state.routeName === 'Docs' && <Link href={`https://github.com/reactjs/react-navigation/tree/master/docs/${docPath}`} className="editLink"> Edit on GitHub</Link>}
{state.routeName === 'Docs' && <Link href={`https://github.com/react-community/react-navigation/tree/master/docs/${docPath}`} className="editLink"> Edit on GitHub</Link>}
{prevAction && <Link to={prevAction}>Previous: {prevName}</Link>}
{nextAction && <Link to={nextAction} className="nextLink">Next: {nextName}</Link>}
</div>