MRI: Adding some styling for NotFound component

This commit is contained in:
MOHAMED RIAD
2021-12-10 22:45:43 +01:00
parent 4ba3e9fc32
commit 969e28f26e
5 changed files with 144 additions and 118 deletions

View File

@@ -1,11 +1,11 @@
import React from 'react';
const NotFound = () => {
return (
<div>
<h1>NOT FOUND</h1>
</div>
);
}
const NotFound = () => {
return (
<div className='not-found__message'>
<h1>NOT FOUND</h1>
</div>
);
};
export default NotFound
export default NotFound;