Skip to content

Instantly share code, notes, and snippets.

View ecasanes's full-sized avatar
🎯
Focusing

Ernest Oliver Casanes ecasanes

🎯
Focusing
View GitHub Profile
@ecasanes
ecasanes / Base.tsx
Created July 11, 2020 09:26
Base React Component
import React from 'react';
export default function ComponentName() {
return (
<>
<p>Component Name Here...</p>
</>
)
@ecasanes
ecasanes / App.tsx
Last active July 11, 2020 09:20
React Todo List App - Create Base Components
import React from 'react';
import './App.css';
function App() {
return (
<div>
<Header />
<TodoInput />
<TodoList />