https://github.com/adithyaakrishna/solid-invention
ReactFlow Demo
https://github.com/adithyaakrishna/solid-invention
Last synced: 11 months ago
JSON representation
ReactFlow Demo
- Host: GitHub
- URL: https://github.com/adithyaakrishna/solid-invention
- Owner: adithyaakrishna
- License: mit
- Created: 2022-10-25T15:38:08.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T20:43:00.000Z (almost 3 years ago)
- Last Synced: 2025-01-01T07:07:23.895Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://adithyaakrishna-reactflow.netlify.app/
- Size: 2.01 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Flow Demo
Uses `"reactflow": "^11.1.2"`
Deployed on [Preview](https://adithyaakrishna.github.io/solid-invention)
Project Structure
```bash
├── .github # Automation Stuff
├── workflows
│ └── deploy.yml # Auto Deploy to GitHub Pages
├── dependabot.yml # Auto Manage Dependencies
├── package-lock.json
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
├── src
│ ├── App.css
│ ├── App.tsx
│ ├── Assets
│ │ └── Icons
│ │ ├── Chat.png
│ │ └── WA.png
│ ├── Components
│ │ ├── BasicComponents
│ │ │ ├── BasicAlert
│ │ │ │ ├── BasicAlert.min.css
│ │ │ │ ├── BasicAlert.tsx
│ │ │ │ └── index.tsx
│ │ │ └── Button
│ │ │ ├── BasicButton.tsx
│ │ │ └── index.ts
│ │ ├── BasicDrawer
│ │ │ ├── BasicDrawer.min.css
│ │ │ ├── BasicDrawer.tsx
│ │ │ └── index.ts
│ │ ├── NodeButton
│ │ │ ├── NodeButton.min.css
│ │ │ └── NodeButton.tsx
│ │ └── Nodes
│ │ └── MessageNode
│ │ ├── MessageNode.tsx
│ │ └── messageNode.min.css
│ ├── Config
│ ├── Layouts
│ │ ├── Header
│ │ │ ├── Header.min.css
│ │ │ ├── Header.tsx
│ │ │ └── index.ts
│ │ ├── MessageFlow
│ │ │ └── MessageFlow.tsx
│ │ └── Panel
│ │ ├── MainPanel
│ │ └── SettingsPanel
│ ├── Pages
│ │ └── HomePage
│ │ ├── HomePage.min.css
│ │ └── HomePage.tsx
│ ├── index.css
│ ├── index.tsx
│ ├── logo.svg
│ ├── react-app-env.d.ts
│ ├── reportWebVitals.ts
│ └── setupTests.ts
└── tsconfig.json
```