/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { __experimentalVStack as VStack } from '@wordpress/components';
import { useContext } from '@wordpress/element';
/**
* Internal dependencies
*/
import { ScreenHeader } from './screen-header';
import { ScreenBody } from './screen-body';
import TypographyElements from './typography-elements';
import TypographyVariations from './variations/variations-typography';
import FontFamilies from './font-families';
import FontSizesCount from './font-sizes/font-sizes-count';
import { GlobalStylesContext } from './context';
function ScreenTypography() {
const { fontLibraryEnabled } = useContext( GlobalStylesContext );
return (
<>
{ fontLibraryEnabled && }
>
);
}
export default ScreenTypography;