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;
|