Files
users-myfit/src/views/NotificationPage.jsx
2023-01-16 13:09:45 -05:00

11 lines
180 B
React

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