A lib to make week notes.
npm install --save react-week-notes
import React from 'react'
import { ReactWeekNotes } from 'react-week-notes'
import 'react-week-notes/dist/index.css'
const notes = [
{name: 'Homework', time: '10:30', day: 1},
]
const Example = () => {
return <ReactWeekNotes notes={notes} color="#6baade" />
}
MIT © cleysonLA