0% found this document useful (0 votes)
8 views2 pages

Login

The document contains multiple React component files including Home, Services, Login, Signup, Contact, Doctors, and DoctorDetails. Each component is structured similarly, featuring a header and a placeholder for additional content. The components are designed for a web application, likely related to healthcare or services.

Uploaded by

ippsec13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views2 pages

Login

The document contains multiple React component files including Home, Services, Login, Signup, Contact, Doctors, and DoctorDetails. Each component is structured similarly, featuring a header and a placeholder for additional content. The components are designed for a web application, likely related to healthcare or services.

Uploaded by

ippsec13
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

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;

You might also like