debian-mirror-gitlab/app/assets/javascripts/visual_review_toolbar/components/index.js
2019-09-30 21:07:59 +05:30

33 lines
663 B
JavaScript

import { comment, postComment } from './comment';
import {
COLLAPSE_BUTTON,
COMMENT_BUTTON,
FORM_CONTAINER,
LOGIN,
LOGOUT,
REVIEW_CONTAINER,
} from './constants';
import { authorizeUser, login } from './login';
import { note } from './note';
import { selectContainer } from './utils';
import { buttonAndForm, logoutUser, toggleForm } from './wrapper';
import { collapseButton } from './wrapper_icons';
export {
authorizeUser,
buttonAndForm,
collapseButton,
comment,
login,
logoutUser,
note,
postComment,
selectContainer,
toggleForm,
COLLAPSE_BUTTON,
COMMENT_BUTTON,
FORM_CONTAINER,
LOGIN,
LOGOUT,
REVIEW_CONTAINER,
};