Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active May 24, 2020 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanaf1979/b75d097cfa6fcda2c5fb0ead2adeec23 to your computer and use it in GitHub Desktop.
Save vanaf1979/b75d097cfa6fcda2c5fb0ead2adeec23 to your computer and use it in GitHub Desktop.
Basic post navigation with React and the Wp Rest Api https://since1979.dev/basic-post-navigation-with-react-and-the-wp-rest-api/
import React, { useState, useEffect } from "react";
import Axios from "axios";
export default function App() {
const [posts, setPosts] = useState([]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment