mirror of
https://github.com/portainer/portainer.git
synced 2025-11-26 14:06:05 +08:00
refactor(app): move react components to react codebase [EE-3179] (#6971)
This commit is contained in:
7
app/react/components/datatables/InnerDatatable.tsx
Normal file
7
app/react/components/datatables/InnerDatatable.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { PropsWithChildren } from 'react';
|
||||
|
||||
import styles from './InnerDatatable.module.css';
|
||||
|
||||
export function InnerDatatable({ children }: PropsWithChildren<unknown>) {
|
||||
return <div className={styles.innerDatatable}>{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user