docusaurus/website/_dogfooding/_pages tests/z-index-tests.tsx
dpang314 1f0440074a
fix(cssnano-preset): disable z-index minification (#7593)
* fix(cssnano-preset): disable z-index minification

* add z-index tests link to pages tests

* revert change to docs
2022-06-15 12:13:25 +02:00

17 lines
416 B
TypeScript

/**
* Copyright (c) Facebook, Inc. and its 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 from 'react';
import Layout from '@theme/Layout';
export default function zIndexTest(): JSX.Element {
return (
<Layout>
<p id="z-index-test">This should have a z-index of 100</p>
</Layout>
);
}