This file contains 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 './App.css' | |
import axios from 'axios' | |
import UserCard from './Components/UserCard' | |
// import FollowersList from './Components/FollowersList' | |
class App extends React.Component { | |
constructor(props) { |
This file contains 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 { runSpecs } from "spec_helper"; | |
import chai from "chai"; | |
import { user, image_paths } from "fake_data"; | |
import { mount } from "enzyme"; | |
import Component from "components/Exercises/List"; | |
const list = []; | |
const settings = { | |
suggestions: [] |
This file contains 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, { Component } from "react"; | |
import axios from "axios"; | |
import Button from "../Button"; | |
import { Checkbox } from "antd"; | |
class Models extends Component { | |
state = { | |
models: [], | |
selected: {} | |
}; |
This file contains 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, { Component } from "react"; | |
import AlbumFields from "./albumFields"; | |
import { ButtonToggle } from "reactstrap"; | |
class Album extends Component { | |
state = { | |
albums: [] | |
}; | |
componentDidMount() { |
This file contains 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, { Component } from "react"; | |
import { render } from "react-dom"; | |
import { | |
BrowserRouter as Router, | |
Switch, | |
Route, | |
Link, | |
Redirect, | |
} from "react-router-dom"; | |
import { AuthenticatedRoute, Login } from "./Authentication"; |
This file contains 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, { Component } from "react"; | |
import { render } from "react-dom"; | |
import { | |
BrowserRouter as Router, | |
Switch, | |
Route, | |
Link, | |
Redirect, | |
withRouter, | |
} from "react-router-dom"; |
This file contains 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 { Button, Card, Container, Dropdown, FormControl } from 'react-bootstrap' | |
import './App.css' | |
import 'bootstrap/dist/css/bootstrap.css' | |
const titleApp = `Convertly.io` | |
const desc = `${titleApp} a React application using exchangeratesapi.io API to convert currencies` | |
export class Conversion extends React.Component { | |
constructor(props) { |