Home.
jsx
import React from 'react';
const Home = () => {
return (
<div>
<h1>Home</h1>
{/* Additional content for the Home component goes here */}
</div>
);
};
export default Home;
services.jsx
import React from 'react';
const Services = () => {
return (
<div>
<h1>Services</h1>
{/* Additional content for the Services component goes here */}
</div>
);
};
export default Services;
Login
import React from 'react';
const Login = () => {
return (
<div>
<h1>Login</h1>
{/* Additional content for the Login component goes here */}
</div>
);
};
export default Login;
Sign up
import React from 'react';
const Signup = () => {
return (
<div>
<h1>Signup</h1>
{/* Additional content for the Signup component goes here */}
</div>
);
};
export default Signup;
Contacts.jsx
import React from 'react';
const Contact = () => {
return (
<div>
<h1>Contact</h1>
{/* Additional content for the Contact component goes here */}
</div>
);
};
export default Contact;
Doctors folder. with the doctor.jsx fie
import React from 'react';
const Doctors = () => {
return (
<div>
<h1>Doctors</h1>
{/* Additional content for the Doctors component goes here */}
</div>
);
};
export default Doctors;
DoctorDetails
import React from 'react';
const DoctorDetails = () => {
return (
<div>
<h1>Doctor Details</h1>
{/* Additional content for the DoctorDetails component goes here */}
</div>
);
};
export default DoctorDetails;