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, { Component } from 'react'; | |
| import { Link } from 'react-router-dom'; | |
| import API from '../../providers/litlist_provider'; | |
| import ResultsPlace from './ApiResultsPlaces'; | |
| import ResultsProducts from './ApiResultsProducts'; | |
| import Container from '../../components/Containers/Container'; | |
| class ApiSearch extends Component { | |
| constructor(props){ | |
| super(props); |
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, { Component } from 'react'; | |
| import { Navbar, Button } from 'react-bootstrap'; | |
| import './App.css'; | |
| class App extends Component { | |
| goTo(route) { | |
| this.props.history.replace(`/${route}`) | |
| } | |
| login() { |