red-lipped-batfish-scad / HugelMaps

MIT License
6 stars 2 forks source link

Frontend Flow Diagram #15

Open cmlooff opened 2 years ago

cmlooff commented 2 years ago

Flow Chart

Frontend Flowchart

graph TD;
    Index[Index.js] -->App[App.jsx]
    App-->MainContainer[MainContainer.jsx];
    MainContainer-->PostContainer[PostContainer.jsx];
    MainContainer-->FeedContainer[FeedContainer.jsx];
    FeedContainer-->FeedItem[FeedItem.jsx];
    PostContainer-->PostCreator[PostCreator.jsx] ;

Frontend Communication to Backend Flowchart


graph TD;
    Server[Server]-->FeedItem[FeedItem.jsx]
    Server-->PostCreator[PostCreator.jsx] ;