Home layout

This commit is contained in:
2023-02-13 20:15:56 -05:00
parent bbfd82d802
commit e591f4c946
3 changed files with 41 additions and 4 deletions
@@ -0,0 +1,13 @@
import React from "react";
import { Link } from "react-router-dom";
import UpdateTable from "./../UpdateTable";
import TotalRecentHx from "./../TotalRecentHx";
export default function HmLayout2({ className }) {
return (
<div>
<UpdateTable className="mb-10"/>
<TotalRecentHx className="mb-10"/>
</div>
);
}
@@ -0,0 +1,13 @@
import React from "react";
import { Link } from "react-router-dom";
import UpdateTable from "./../UpdateTable";
import TotalRecentHx from "./../TotalRecentHx";
export default function HmLayout3({ className }) {
return (
<div>
<TotalRecentHx className="mb-10"/>
<TotalRecentHx className="mb-10"/>
</div>
);
}