Files
users-myfit/src/views/HistoryPage.jsx
T
2023-01-30 16:46:25 -05:00

11 lines
164 B
React
Executable File

import React from "react";
import History from "../components/History";
export default function HistoryPage() {
return (
<>
<History />
</>
);
}