1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added comment

This commit is contained in:
Fedor Katurov 2019-11-14 15:57:29 +07:00
parent d8d7f6e035
commit 7f49a69dea

View file

@ -1,11 +1,11 @@
import * as React from 'react'; import * as React from "react";
import { render } from 'react-dom'; import { render } from "react-dom";
import { Provider } from 'react-redux'; import { Provider } from "react-redux";
import { PersistGate } from 'redux-persist/integration/react'; import { PersistGate } from "redux-persist/integration/react";
import { configureStore } from '~/redux/store'; import { configureStore } from "~/redux/store";
import App from '~/containers/App'; import App from "~/containers/App";
require('./styles/main.scss'); require("./styles/main.scss");
const { store, persistor } = configureStore(); const { store, persistor } = configureStore();
@ -15,13 +15,12 @@ render(
<App /> <App />
</PersistGate> </PersistGate>
</Provider>, </Provider>,
document.getElementById('app') document.getElementById("app")
); );
/* /*
- backend: exclude node covers on import - backend: exclude node covers on import
- profile editing
- relocate files - relocate files
- import videos - import videos
- import graffiti - import graffiti
@ -36,8 +35,10 @@ render(
- social integration (assimilate) - social integration (assimilate)
- comment editing - comment editing
- fulltext https://github.com/typeorm/typeorm/issues/3191
Done: Done:
- profile editing
- notifications (messages) - notifications (messages)
- profile modal - profile modal
- messages - messages
@ -46,5 +47,5 @@ Done:
- social integration (login, signup) - social integration (login, signup)
- boris with comments (import) - boris with comments (import)
- boris with comments (layout) - boris with comments (layout)
*/ */