import React from 'react'; import useData from './useData'; import type { ValueOrNestedValue } from '@staticcms/core/interface'; import type { FC } from 'react'; export interface DataProps { path: string; value: ValueOrNestedValue; } const Data: FC = ({ path, value }) => { const data = useData(value, path); return <>{data}; }; export default Data;