/** * 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. */ import React, {Suspense} from 'react'; import clsx from 'clsx'; import Link from '@docusaurus/Link'; import Layout from '@theme/Layout'; import BrowserOnly from '@docusaurus/BrowserOnly'; import styles from './index.module.css'; function HeroSection() { return (

Yoga Layout

A portable and perfomant layout engine targeting web standards

Learn more
); } const LazyPlayground = React.lazy( () => import('../components/Playground/Playground'), ); // Docusaurus SSR does not correctly support top-level await // 1. https://github.com/facebook/docusaurus/issues/7238 // 2. https://github.com/facebook/docusaurus/issues/9468 function BrowserOnlyPlayground() { return ( {() => ( )} ); } function PlaygroundSection() { return (
); } export default function Home(): JSX.Element { return ( ); }