Post.js — react Source File
Architecture documentation for Post.js, a javascript file in the react codebase.
Entity Profile
Relationship Graph
Source Code
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
export default function Post() {
return (
<>
<h1>Hello world</h1>
<p>
This demo is <b>artificially slowed down</b>. Open{' '}
<code>server/delays.js</code> to adjust how much different things are
slowed down.
</p>
<p>
Notice how HTML for comments "streams in" before the JS (or React) has
loaded on the page.
</p>
<p>
Also notice that the JS for comments and sidebar has been code-split,
but HTML for it is still included in the server output.
</p>
</>
);
}
Domain
Subdomains
Functions
Source
Frequently Asked Questions
What does Post.js do?
Post.js is a source file in the react codebase, written in javascript. It belongs to the BabelCompiler domain, Entrypoint subdomain.
What functions are defined in Post.js?
Post.js defines 1 function(s): Post.
Where is Post.js in the architecture?
Post.js is located at fixtures/ssr2/src/Post.js (domain: BabelCompiler, subdomain: Entrypoint, directory: fixtures/ssr2/src).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free