Skip to content
Snippets Groups Projects
Commit dfb8c61b authored by Orlando Piñero's avatar Orlando Piñero
Browse files

done now

parent 3607c054
No related branches found
No related tags found
No related merge requests found
import React, { Component } from 'react';
import './App.css';
import TopMenu from './react/entity/TopMenu';
import TopMenu from './react/authentication/components/TopMenu';
import PublicPage from './react/pages/PublicPage';
import PrivatePage from './react/pages/PrivatePage';
import UserManagement from '../src/react/user/UserManagement';
......
import React, { Component } from "react";
import Nav from 'react-bootstrap/Nav';
import Navbar from 'react-bootstrap/Navbar';
import UserSessionWidget from "../user/components/userSessionWidget";
import UserSessionWidget from "../../user/components/userSessionWidget";
import Container from 'react-bootstrap/Container';
import { LinkContainer } from 'react-router-bootstrap';
import { connect } from "react-redux";
import { bindActionCreators } from "redux";
import * as authenticationActions from '../authentication/state/AuthenticationActions'
import * as userManagementActions from '../user/state/UserManagementActions';
import * as degreeCourseManagementActions from '../degreeCourse/state/DegreeCourseManagementActions';
import * as applicationManagementActions from '../degreeCourseApplication/state/ApplicationManagementActions';
import * as authenticationActions from '../../authentication/state/AuthenticationActions'
import * as userManagementActions from '../../user/state/UserManagementActions';
import * as degreeCourseManagementActions from '../../degreeCourse/state/DegreeCourseManagementActions';
import * as applicationManagementActions from '../../degreeCourseApplication/state/ApplicationManagementActions';
const mapStateToProps = state => {
return {
......
......@@ -3,7 +3,7 @@ import Button from "react-bootstrap/esm/Button";
import { connect } from "react-redux";
import { getShowLoginDialogAction } from "../authentication/state/AuthenticationActions";
import { getShowLoginDialogAction } from "../state/AuthenticationActions";
class loginButton extends Component {
constructor(props) {
......
import React, { Component } from "react";
import LoginButton from "../entity/loginButton";
import LoginButton from "../authentication/components/loginButton";
class PublicPage extends Component {
render() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment