Files
react_task_1b/src/pages/NotFoundPage.jsx
T

12 lines
228 B
React
Raw Normal View History

2022-11-26 01:25:31 -05:00
import React from "react";
const NotFoundPage = () => {
return (
<div className="w-full flex justify-center items-center text-7xl h-screen text-gray-700 ">
Not Found
</div>
);
};
export default NotFoundPage;