Skip to content

Latest commit

 

History

History
59 lines (57 loc) · 1.47 KB

FOLDERS.md

File metadata and controls

59 lines (57 loc) · 1.47 KB

Folder Structure

    those-who-came-before/
    │
    ├── public/
    │   ├── index.html
    │   └── assets/
    │       ├── images/
    │       └── sounds/
    │
    ├── src/
    │   ├── components/
    │   │   ├── Artifact.js
    │   │   ├── Culture.js
    │   │   ├── Game.js
    │   │   └── App.js
    │   ├── data/
    │   │   └── cultures.json
    │   ├── utils/
    │   │   ├── artifactGeneration.js
    │   │   ├── cultureGeneration.js
    │   │   └── narrativeGeneration.js
    │   └── index.js
    │
    ├── .gitignore
    ├── README.md
    ├── package.json
    └── webpack.config.js
those-who-came-before/
│
├── public/
│   └── index.html
├── src/
│   ├── assets/
│   │   └── images/
│   ├── components/
│   │   └── [ComponentName].jsx
│   ├── context/
│   │   └── [ContextName].js
│   ├── hooks/
│   │   └── use[HookName].js
│   ├── styles/
│   │   └── [StyleFile].css
│   ├── utils/
│   │   └── [UtilityFunction].js
│   ├── App.jsx
│   ├── index.js
│   └── data/
│       ├── artefacts.json
│       └── cultures.json
├── .gitignore
├── README.md
├── package.json
└── webpack.config.js