Skip to content

Instantly share code, notes, and snippets.

View tdiderich's full-sized avatar

Tyler Diderich tdiderich

View GitHub Profile
@tdiderich
tdiderich / blogs.tsx
Last active October 14, 2021 19:34
React - Blogs from Medium
import { useState, useEffect } from "react";
import axios from "axios";
import { Layout } from "../shared/Layout";
interface ResponseType {
feed: Object;
items: BlogType[];
status: string;
}