Monthly.js 193 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
import React from 'react';
import Calendar from './components/Calendar';
Choi Ga Young's avatar
Choi Ga Young committed
3

YoonDongMin's avatar
YDm    
YoonDongMin committed
4
const Montly = ({ navigation }) => {
Choi Ga Young's avatar
Choi Ga Young committed
5
  return (
YoonDongMin's avatar
YDm    
YoonDongMin committed
6
    <Calendar navigation={navigation} />
Choi Ga Young's avatar
Choi Ga Young committed
7
8
  )
}
Choi Ga Young's avatar
Choi Ga Young committed
9

Choi Ga Young's avatar
Choi Ga Young committed
10
11

export default Montly;