12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
/**
|
|
* This file serves as the directory for the component
|
|
* The purpose is to uniformly manage external output components and facilitate classification.
|
|
*/
|
|
/**
|
|
* layout component
|
|
*/
|
|
import { SelectLang } from './RightContent';
|
|
import { AvatarDropdown, AvatarName } from './RightContent/AvatarDropdown';
|
|
|
|
export { AvatarDropdown, AvatarName, SelectLang };
|