import * as React from "react"; import styles from "../../styles"; import { Button } from "@mui/material"; import axios from "axios"; export interface props { title: string; content: string; id: number; date_created: string; } export default function Note(props: props) { return (

{props.title}

{props.content}

Timestamp: {props.date_created}

); }