Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1001 Bytes

File metadata and controls

43 lines (38 loc) · 1001 Bytes

Frontend

Frontend for Turtle connect

Framework

React + Vite

Prerequisites

Install Node.js

Setting

git clone https://github.com/TurtleTongtong/frontend.git
cd frontend
npm install
npm run dev

You may check your development page at http://localhost:5173/

File Structure

├──── public
|  └──── static files
├──── src
|  ├──── assets
|  |  └── static files (image, etc.)
|  ├──── pages
|  |  ├── MainAndBooking.jsx
|  |  ├── Register.jsx
|  |  ├── Login.jsx
|  |  ├── etc.
|  ├──── styles
|  |  ├── App.css
|  |  ├── index.css <-- Global Style
|  |  ├── etc.
|  ├──── components
|  ├──── main.jsx
|  └──── App.jsx    <-- Entry point
├──── index.html
├──── README.md

Please make your page at pages directory.

About file structure for react