aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Home.tsx
blob: 0d694c0799811df73a2c0dd99d7af878bcd3cdfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import {View} from 'react-native';
import {Clock} from '../components/Clock';
import {Favorites} from '../components/Favorites';

export const Home: React.FC<{active: boolean}> = ({active}) => {
  return (
    <View>
      <Clock />
      <Favorites active={active} />
    </View>
  );
};