Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.17 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.17 KB

Pages

This directory contains the main pages of the React application, written in TypeScript (TSX). Pages are high-level components that represent different routes or views in the application. Each page typically corresponds to a route defined in the routing configuration.

Common Pages

Some examples of pages that might be included in this directory are:

  • Home: The main landing page of the application.
  • About: A page that provides information about the application or company.
  • Contact: A page with a contact form or contact information.
  • Profile: A user profile page.
  • Dashboard: A page that displays user-specific data and actions.

Example Page

Here is an example of a simple home page component written in TSX:

// pages/home.tsx

import React from 'react';
import Button from '../components/Button';

const HomePage: React.FC = () => {
    const handleClick = () => {
        alert('Welcome to the Home Page!');
    };

    return (
        <div>
            <h1>Home Page</h1>
            <p>Welcome to our application!</p>
            <Button label="Click Me" onClick={handleClick} />
        </div>
    );
};

export default HomePage;