@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
8 lines (7 loc) • 422 B
TypeScript
import * as React from 'react';
import { NavigationContentProps } from '../Navigation.type';
declare const Content: {
({ children }: NavigationContentProps): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
displayName: string;
};
export default Content;