import Card from '../ui/Card';
import { IonPage, IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/react';
import { homeItems } from '../../store';
const HomeCard = ({ title, type, text, author, image }) => (
);
const Home = () => (
Inbox
{homeItems.map((i, index) => (
))}
);
export default Home;