Skip to content

Instantly share code, notes, and snippets.

View yangga's full-sized avatar
🏠
Working at home

Sungwoo Yang yangga

🏠
Working at home
  • Republic of Korea
View GitHub Profile
@yangga
yangga / test.rn.helloworld.js
Created August 18, 2018 04:17
test.rn.helloworld.js
import React, { Component } from 'react'
import { Text, View } from 'react-native'
export default App extends Component {
render(){
return (
<View>
<Text>Hello world</Text>
</View>
)
}