mirror of
https://bitbucket.org/tagfer_team/tagfer-app.git
synced 2025-12-25 03:37:41 +00:00
10 lines
177 B
JavaScript
10 lines
177 B
JavaScript
import React from 'react';
|
|
|
|
import AppNavigator from './src/config/router';
|
|
|
|
export default class App extends React.Component {
|
|
render() {
|
|
return <AppNavigator />;
|
|
}
|
|
};
|