mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 11:57:16 +08:00
6 lines
212 B
JavaScript
6 lines
212 B
JavaScript
// @flow
|
|
import axiosInstance from "./config";
|
|
import { ABOUT_SCINOTE_PATH } from "./endpoints";
|
|
|
|
export const getSciNoteInfo = (): Promise<*> =>
|
|
axiosInstance.get(ABOUT_SCINOTE_PATH).then(({ data }) => data);
|