Home layout

This commit is contained in:
2023-02-12 22:46:59 -05:00
parent dab21802b1
commit 9a579d3df1
2 changed files with 18 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 HmLayout1({ className }) {
return (
<div>
<TotalRecentHx className="mb-10"/>
<UpdateTable className="mb-10"/>
</div>
);
}