mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import React from 'react';
|
|
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
/** Remove after topnav feature toggle is removed */
|
|
export function OldNavOnly({ children }: Props): React.ReactElement | null {
|
|
return <>{children}</>;
|
|
}
|