Skip to content

Latest commit

 

History

History
39 lines (36 loc) · 1.33 KB

File metadata and controls

39 lines (36 loc) · 1.33 KB

pseudoforum

A very simple visual (read-only) forum written in React for the final group project of 420-320-DW WEB DEVELOPMENT II.

Setup

  1. Clone the repository.
  2. Run npm install to install the dependencies.
  3. Run npm run dev to start the development server and follow the local url.
  4. Congratulations. You are now running the project.

Structure

The components are structured as follows:

App.jsx
├── lib
│   ├── Main.jsx
│   ├── column
│   │   ├── left
│   │   │   ├── LeftColumn.jsx
│   │   │   ├── sub
│   │   │   │   ├── AdminBox.jsx
│   │   │   │   ├── MiscBox.jsx
│   │   ├── middle
│   │   │   ├── MiddleColumn.jsx
│   │   │   ├── sub
│   │   │   │   ├── ChoiceBox.jsx
│   │   │   │   ├── ForumBox.jsx
│   │   │   │   ├── ForumPost.jsx
│   │   ├── right
│   │   │   ├── RightColumn.jsx
│   │   │   ├── sub
│   │   │   │   ├── LoginBox.jsx
│   │   │   │   ├── RegisterBox.jsx
│   │   │   │   ├── UserBox.jsx

Contributors