mirror of https://github.com/portainer/portainer
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
|
import { PropsWithChildren } from 'react';
|
||
|
|
||
|
import { useTableContext } from './TableContainer';
|
||
|
|
||
|
export function TableTitleActions({ children }: PropsWithChildren<unknown>) {
|
||
|
useTableContext();
|
||
|
|
||
|
return <div className="settings">{children}</div>;
|
||
|
}
|