Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 1x 1x | import React from "react";
import { storiesOf } from "@storybook/react";
import { BrowserRouter } from "react-router-dom";
import "../../../style/custom.scss";
import Profile from "./Profile";
import { Provider } from "react-redux";
import store from "../../../background/redux/store";
import { hostname } from "../../../background/api/api";
import MockAdapter from "axios-mock-adapter";
import axios from "axios";
// const mock = new MockAdapter(axios);
// const API_REQUEST = hostname;// + filesystemPath + "/contents";
storiesOf("Profile", module)
.add("default", () =>
<Provider store={store}>
<BrowserRouter>
<Profile />
</BrowserRouter>
</Provider>
)
|