Skip to content

Instantly share code, notes, and snippets.

View Clinzho1996's full-sized avatar
🥰
React Native is Life

Emonena Confidence (Dev-Clinton) Clinzho1996

🥰
React Native is Life
View GitHub Profile
@jonasgroendahl
jonasgroendahl / calendar.tsx
Created June 17, 2020 14:07
Calendar Agenda
import React, {useState} from 'react';
import {View, TouchableOpacity} from 'react-native';
import {Agenda} from 'react-native-calendars';
import {Card, Avatar} from 'react-native-paper';
import Typography from '../components/Typography';
const timeToString = (time) => {
const date = new Date(time);
return date.toISOString().split('T')[0];
};