Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Commit

Permalink
Stuffed component files into respective directories
Browse files Browse the repository at this point in the history
  • Loading branch information
SuneelFreimuth committed May 20, 2018
1 parent 52c804a commit 99ac9fa
Show file tree
Hide file tree
Showing 12 changed files with 406 additions and 374 deletions.
751 changes: 391 additions & 360 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"firebase": "^4.9.1",
"firebase": "^4.13.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';

import SignInPage from './components/sign-in-page';
// import SignInPage from './components/sign-in-page';

import Fire from './firebase.js';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import NavBar from './nav-bar';
import NavBar from '../nav-bar';

export default class ContactUs extends Component {
render() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react';
import NavBar from './nav-bar';
import NavBar from '../nav-bar';
import ProfilePanel from './profile-panel';
import SignInPanel from './sign-in-panel';
import SignInPanel from '../sign-in-page/sign-in-panel';

export default class ProfilePage extends Component {
render() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import { Link } from 'react-router-dom'
import Fire from '../firebase.js';
import Fire from '../../firebase.js';

const database = Fire.database();
const auth = Fire.auth();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import NavBar from './nav-bar';
import NavBar from '../nav-bar';
import SignInPanel from './sign-in-panel';

export default class SignInPage extends Component {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import Fire from '../firebase.js';
import Fire from '../../firebase.js';
import { Link } from 'react-router-dom';
export default class SignInPanel extends Component {
constructor(props) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import NavBar from './nav-bar';
import NavBar from '../nav-bar';
import SignUpPanel from './sign-up-panel';

export default class SignUpPage extends Component {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
import Fire from '../firebase.js';
import Fire from '../../firebase.js';

const database = Fire.database();
const auth = Fire.auth();
Expand Down
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import App from './App';
import registerServiceWorker from './registerServiceWorker';
import './stylesheets/style.css';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import SignUpPage from './components/sign-up-page';
import SignInPage from './components/sign-in-page';
import ProfilePage from './components/profile-page';
import SignUpPage from './components/sign-up-page/sign-up-page';
import SignInPage from './components/sign-in-page/sign-in-page';
import ProfilePage from './components/profile-page/profile-page';
import About from './components/about';
import ContactUs from './components/contact-us';
import ContactUs from './components/contact-page/contact-us';
import Home from './components/home';
import Database from './components/database';

Expand Down
1 change: 1 addition & 0 deletions src/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ body {
font-size: 2.2rem;
border: none;
padding: 10px;
text-decoration: none;
}

@media (max-width: 500px) {
Expand Down

0 comments on commit 99ac9fa

Please sign in to comment.