<Route path="/component/Scripts/" component={Scripts} />
<Route path="/component/Admin/" component={Admin} />
<Route path="/component/Help/" component={Help} />
<Route path="/component/Price/" component={Price} />
Но если обновить страницу то ее не находит.
Так вот как направить ответ на нужную страницу чтобы ее отрендерило на Node (express) если она по идее у меня одна, просто роуты стоят на другие.
export * as selectors from './selectors';
import { formatTime } from "../../../utils";
import { formatTime } from "../../../utils/chatFormatTime";
console.log(getUserData());
getUserData = (userData, criteria) => userData.map(
(number, key) => ({ name: number[criteria], key }),
);
getExchangeList = () => axios.get('/exchange');
async componentDidMount() {
try {
const data = await getExchangeList();
// do something with data
} catch (e) {
// handle error
}
}
componentDidMount() {
getExchangeList().then(res => {
// do something with res
}).catch(e => {
// handle error
});
}
import Axios from 'axios';
export const axios = Axios.create({
baseURL: 'https://some-domain.com/api/',
});