/** * 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 ( <>

Hello world

This demo is artificially slowed down. Open{' '} server/delays.js to adjust how much different things are slowed down.

Notice how HTML for comments "streams in" before the JS (or React) has loaded on the page.

Also notice that the JS for comments and sidebar has been code-split, but HTML for it is still included in the server output.

); }