Skip to content

Instantly share code, notes, and snippets.

View altyaper's full-sized avatar

Jorge Chavez altyaper

View GitHub Profile
@altyaper
altyaper / React Component
Last active June 8, 2019 20:34
React component
View React Component
import React from 'react'
function Component({children}) {
return (
{children}
)
}
export default Component;