aboutsummaryrefslogtreecommitdiff
path: root/src/screens/Home.tsx
blob: 7bd1a3f318dd5f2e756fa2335474661bd232a27a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';
import {View} from 'react-native';
import {Clock} from '../components/Clock';
import {AppDetail} from 'react-native-launcher-kit/typescript/Interfaces/InstalledApps';
import {Favorites} from '../components/Favorites';

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