├── .eslintrc.cjs ├── .gitignore ├── README.md ├── _gitignore ├── index.html ├── package.json ├── public ├── FontWithASyntaxHighlighter-Regular.woff2 ├── counter.gif ├── holograph-favicon.svg ├── holograph-icon.svg ├── star.svg ├── temp-converter.gif └── tutorial.json ├── src ├── App.css ├── App.jsx ├── HelpMenu.jsx ├── MainMenu.jsx ├── SharePanel.jsx ├── Toolbar.jsx ├── appendCreatedAt.js ├── assets │ └── react.svg ├── castInput.js ├── deepDiff.js ├── getUniqueName.js ├── index.css ├── main.jsx ├── overrides.js ├── update.js └── useMediaQuery.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .ds_store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/README.md -------------------------------------------------------------------------------- /_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/_gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/package.json -------------------------------------------------------------------------------- /public/FontWithASyntaxHighlighter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/FontWithASyntaxHighlighter-Regular.woff2 -------------------------------------------------------------------------------- /public/counter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/counter.gif -------------------------------------------------------------------------------- /public/holograph-favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/holograph-favicon.svg -------------------------------------------------------------------------------- /public/holograph-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/holograph-icon.svg -------------------------------------------------------------------------------- /public/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/star.svg -------------------------------------------------------------------------------- /public/temp-converter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/temp-converter.gif -------------------------------------------------------------------------------- /public/tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/public/tutorial.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/HelpMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/HelpMenu.jsx -------------------------------------------------------------------------------- /src/MainMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/MainMenu.jsx -------------------------------------------------------------------------------- /src/SharePanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/SharePanel.jsx -------------------------------------------------------------------------------- /src/Toolbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/Toolbar.jsx -------------------------------------------------------------------------------- /src/appendCreatedAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/appendCreatedAt.js -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/castInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/castInput.js -------------------------------------------------------------------------------- /src/deepDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/deepDiff.js -------------------------------------------------------------------------------- /src/getUniqueName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/getUniqueName.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/overrides.js -------------------------------------------------------------------------------- /src/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/update.js -------------------------------------------------------------------------------- /src/useMediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/src/useMediaQuery.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennishansen/holograph/HEAD/vite.config.js --------------------------------------------------------------------------------