Skip to content

Instantly share code, notes, and snippets.

View etiotan's full-sized avatar
🏅

Etio Tan etiotan

🏅
View GitHub Profile
@etiotan
etiotan / setup.sh
Created January 23, 2022 16:48 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@etiotan
etiotan / cloudSettings
Last active November 19, 2019 15:47
VScode settings
{"lastUpload":"2019-11-19T15:47:29.919Z","extensionVersion":"v3.4.3"}
import * as React from 'react';
import StyledButton from './styled/StyledButton';
export interface ButtonProps {
/** Callback function to be called when user clicks on button */
onClick: () => void;
children: React.ReactNode;
/** Renders a disabled button and prevents onClick */
disabled?: boolean;
/** Primary Button */