├── .gitignore
├── README.md
├── index.html
├── package.json
├── public
├── models
│ └── Table.gltf
└── vite.svg
├── src
├── App.jsx
├── assets
│ └── react.svg
├── components
│ ├── Experience.jsx
│ ├── Interface.jsx
│ └── Table.jsx
├── contexts
│ └── Configurator.jsx
├── index.css
└── main.jsx
├── vite.config.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/.gitignore
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/README.md
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/index.html
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/package.json
--------------------------------------------------------------------------------
/public/models/Table.gltf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/public/models/Table.gltf
--------------------------------------------------------------------------------
/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/public/vite.svg
--------------------------------------------------------------------------------
/src/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/App.jsx
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/assets/react.svg
--------------------------------------------------------------------------------
/src/components/Experience.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/components/Experience.jsx
--------------------------------------------------------------------------------
/src/components/Interface.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/components/Interface.jsx
--------------------------------------------------------------------------------
/src/components/Table.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/components/Table.jsx
--------------------------------------------------------------------------------
/src/contexts/Configurator.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/contexts/Configurator.jsx
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/index.css
--------------------------------------------------------------------------------
/src/main.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/src/main.jsx
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/vite.config.js
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wass08/table-configurator-three-js-r3F-tutorial-final/HEAD/yarn.lock
--------------------------------------------------------------------------------