Skip to content

Instantly share code, notes, and snippets.

View JulianSuringa's full-sized avatar

Julian Suringa JulianSuringa

  • inspireteam
  • Cebu, Philippines
View GitHub Profile
@JulianSuringa
JulianSuringa / test.tsx
Created June 16, 2019 11:32
typescript stateless component
import React from 'react';
type PropType ={
title: string;
}
export default () => (
<div>{props.title}</div
);