;
-
const getRow = (row: any) => [
|
@@ -38,7 +35,7 @@ const getRow = (row: any) => [
| ,
];
-function Broadcasts(props: Props) {
+export default function Broadcasts() {
const hasPermission = ConfigStore.get('user').permissions.has('broadcasts.admin');
const fields = getBroadcastSchema();
@@ -91,10 +88,7 @@ function Broadcasts(props: Props) {
['expires', 'Date Expires'],
]}
defaultSort="created"
- {...props}
/>
);
}
-
-export default Broadcasts;