mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2022-12-28 18:12:07 +02:00
18 lines
321 B
JavaScript
18 lines
321 B
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import SystemContainer from "../../features/system/components/SystemContainer";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<>
|
|
<SystemContainer />
|
|
</>
|
|
);
|
|
};
|
|
|
|
HomePage.propTypes = {
|
|
actions: PropTypes.object.isRequired
|
|
};
|
|
|
|
export default HomePage;
|