Skip to content

Instantly share code, notes, and snippets.

View ridgeO's full-sized avatar

Ridge ridgeO

View GitHub Profile
@ridgeO
ridgeO / 01.js
Created June 27, 2017 20:19
Code snippets from RNFirebaseChat application as featured in http://platypus.is/posts/6
# index.ios.js and index.android.js
import './app.js';
@ridgeO
ridgeO / 01.js
Last active May 15, 2021 08:38
Code snippets from RNCardStack application as featured in http://platypus.is/posts/7
# index.ios.js and index.android.js
import './components/App.js';
# components/App.js
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
@ridgeO
ridgeO / BSInputGroupsReact.js
Last active May 30, 2018 19:49
Bootstrap style input groups
import React from "react";
import { render } from "react-dom";
import styled from "styled-components";
const InputGroup = styled.div`
position: relative;
display: flex;
align-items: stretch;
flex-wrap: no-wrap;
`;