mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 01:09:20 +02:00
* fix(cssnano-preset): disable z-index minification * add z-index tests link to pages tests * revert change to docs
17 lines
416 B
TypeScript
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>
|
|
);
|
|
}
|