/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { FC } from 'react' import { useMemo } from 'react' import { useThematic } from './useThematic.js' /** * This component applies root-level styles to your application using the theme defaults. */ export const ApplicationStyles: FC = () => { const theme = useThematic() return useMemo( () => ( ), [theme], ) }