Skip to content

Instantly share code, notes, and snippets.

View dongsik-yoo's full-sized avatar

유동식 dongsik-yoo

  • Kakao Entertainment
  • Seoul
View GitHub Profile
@minhlucvan
minhlucvan / App.js
Last active October 12, 2023 03:58
react native org chart
import React, { Component } from 'react';
import { Platform, StyleSheet, Text, View } from 'react-native';
import OrgChart from './Orgchart';
import NodeComponent from './NodeComponent';
const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
android: 'Double tap R on your keyboard to reload,\n' + 'Shake or press menu button for dev menu',
});
@MrToph
MrToph / google-drive.js
Last active April 16, 2024 12:36
Google Drive API v3 fetch
import GoogleSignIn from 'react-native-google-sign-in'
const url = 'https://www.googleapis.com/drive/v3'
const uploadUrl = 'https://www.googleapis.com/upload/drive/v3'
const boundaryString = 'foo_bar_baz' // can be anything unique, needed for multipart upload https://developers.google.com/drive/v3/web/multipart-upload
let apiToken = null