Skip to content

Instantly share code, notes, and snippets.

View ChuksFestus's full-sized avatar
🌍
Building platforms

Chuks Festus ChuksFestus

🌍
Building platforms
View GitHub Profile
@ChuksFestus
ChuksFestus / redirect.js
Created January 15, 2018 17:44
react redirect
import React from 'react';
import axios from 'axios';
import { Redirect } from 'react-router-dom';
const BASE_URL = 'http://localhost:1337'
class Signup extends React.Component {
state = {
data: {
email: "",
@ChuksFestus
ChuksFestus / index.html
Created January 12, 2017 10:51
A todo -list app with vanillaJs
<head>
<title>Todo app</title>
<meta charset="UTF-8">
<meta name="description" content="todo list in vanilla js">
<meta name="keywords" content="todo list, vanillajs, chuksFestus, chuks festus">
<meta name="author" content="Chuks festus">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>