This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pull base image. | |
FROM ubuntu:14.04 | |
# Install linux tools | |
# Install nodejs, npm, openjdk | |
RUN \ | |
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \ | |
apt-get update && \ | |
apt-get -y upgrade && \ | |
apt-get install -y build-essential && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { GiftedChat } from "react-native-gifted-chat"; | |
import { getAccessTokenFromStorage } from '../utils/Auth' | |
import firebaseSvc from "../utils/FirebaseSvc"; | |
export default class Chat extends React.Component { | |
state = { | |
messages: [] | |
}; |
NewerOlder