2017-09-23 09:53:25 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
import {
|
|
|
|
|
AppRegistry,
|
|
|
|
|
View
|
|
|
|
|
} from 'react-native';
|
|
|
|
|
|
2017-09-23 12:54:49 +02:00
|
|
|
import Lesson from './src/components/Lesson';
|
2017-09-23 11:31:22 +02:00
|
|
|
import Categories from './src/components/Categories';
|
2017-09-23 12:54:49 +02:00
|
|
|
import LessonCategories from './src/components/LessonCategories';
|
2017-09-23 21:28:20 +02:00
|
|
|
import AnatomyCard from './src/components/AnatomyCard';
|
|
|
|
|
import Router from './src/Router';
|
2017-09-23 11:31:22 +02:00
|
|
|
|
2017-09-23 09:53:25 +02:00
|
|
|
export default class meme extends Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
2017-09-23 12:54:49 +02:00
|
|
|
<View style={{ flex: 1 }}>
|
2017-09-23 21:28:20 +02:00
|
|
|
{/*
|
2017-09-23 12:54:49 +02:00
|
|
|
<Lesson
|
|
|
|
|
lessonHeaderText={'IMA LI MLIJEKA?'} lessonHeaderBackroundColor={'#7270a8'}
|
|
|
|
|
questions={
|
|
|
|
|
['Kako funkcioniše produkcija mlijeka?',
|
|
|
|
|
'Uspostavljanje i zadržavanje zaliha mlijeka kad beba ne doji',
|
|
|
|
|
'Prejak refleks otpuštanja mlijeka ili prekomjerne zalihe',
|
|
|
|
|
'Koje biljke izbjegavati za vrijeme dojenja']}
|
2017-09-23 21:28:20 +02:00
|
|
|
/>*/
|
|
|
|
|
}
|
|
|
|
|
<Router />
|
|
|
|
|
|
2017-09-23 09:53:25 +02:00
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('meme', () => meme);
|