Skip to content

Commit

Permalink
attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfagnani committed Nov 9, 2023
1 parent 8ba0233 commit c1aebe3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ These workers and iframes are controlled by various Playground elements like `<p

```mermaid
flowchart TD
IDE{{&lt;playground-ide>}};
IDE{{playground-ide}};
subgraph Project;
ProjectElement{{&lt;playground-project>}};
ProjectElement{{playground-project}};
WebWorker(Build Worker);
ProxyIframe[Proxy &lt;iframe>];
ProxyIframe[Proxy iframe];
end;
subgraph Editors;
FileEditor1{{&lt;playground-file-editor>}};
FileEditor2{{&lt;playground-file-editor>}};
FileEditor1{{playground-file-editor}};
FileEditor2{{playground-file-editor}};
end;
subgraph Preview;
PreviewElement{{&lt;playground-preview>}};
PreviewIframe[Preview &lt;iframe>];
PreviewElement{{playground-preview}};
PreviewIframe[Preview iframe];
end;
subgraph Network;
ServiceWorker(Service Worker);
CDN([CDN]);
end;
IDE -...-> Project;
IDE -.-> Project;
IDE -.-> Editors;
IDE -.-> Preview;
WebWorker -- Built Project Files --> ProjectElement;
Expand Down

0 comments on commit c1aebe3

Please sign in to comment.