9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
import React from "react";
|
|
import { ComingSoonPage } from "../Misc/ComingSoonPage";
|
|
|
|
const Reports = () => {
|
|
return <ComingSoonPage></ComingSoonPage>;
|
|
};
|
|
|
|
export default Reports;
|