| 3 | import { Dropdown, Menu } from '@alifd/next'; |
| 4 | import './index.scss'; |
| 5 | export interface IProps { |
| 6 | logo?: string; |
| 7 | href?: string; |
| 8 | scenarioInfo?: any; |
| 9 | scenarioDisplayName?: string; |
| 10 | } |
| 11 | |
| 12 | const Logo: React.FC<IProps> = (props): React.ReactElement => { |
| 13 | const { scenarioDisplayName, scenarioInfo } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected