Private
Public Access
1
0

feat: Fluent UI Outlook Lite + connections mockup

This commit is contained in:
2026-04-14 18:52:25 +00:00
parent 1199eff6c3
commit dfa4010406
34820 changed files with 1003813 additions and 205 deletions

View File

@@ -0,0 +1,20 @@
'use client';
import * as React from 'react';
import { useFlatTree_unstable } from './useFlatTree';
import { useFlatTreeStyles_unstable } from './useFlatTreeStyles.styles';
import { useFlatTreeContextValues_unstable } from './useFlatTreeContextValues';
import { renderFlatTree_unstable } from './renderFlatTree';
import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
/**
* The `FlatTree` component is a variation of the `Tree` component that deals with a flattened data structure.
*
* It should be used on cases where more complex interactions with a Tree is required.
* On simple scenarios it is advised to simply use a nested structure instead.
*/ export const FlatTree = /*#__PURE__*/ React.forwardRef((props, ref)=>{
const state = useFlatTree_unstable(props, ref);
const contextValues = useFlatTreeContextValues_unstable(state);
useFlatTreeStyles_unstable(state);
useCustomStyleHook_unstable('useFlatTreeStyles_unstable')(state);
return renderFlatTree_unstable(state, contextValues);
});
FlatTree.displayName = 'FlatTree';