import React from "react"; import { StyleSheet, ScrollView, Alert } from "react-native"; import { Block, Text } from "galio-framework"; import { Notification } from "../components"; import { argonTheme } from "../constants"; export default class SystemNotifications extends React.Component { render() { return ( Unread notifications Read notifications ); } } const styles = StyleSheet.create({ card: { width: '100%', backgroundColor: argonTheme.COLORS.WHITE, marginTop: 25, borderRadius: 6 }, cardHeader: { paddingTop: 20, paddingBottom: 20, paddingLeft: 20, borderColor: 'rgba(0,0,0,0.2)', borderBottomWidth: StyleSheet.hairlineWidth } });