mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-21 02:14:45 +02:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import React from 'react';
|
|
import { SubuserPermission } from '@/state/server/subusers';
|
|
|
|
interface Props {
|
|
defaultPermissions: SubuserPermission[];
|
|
}
|
|
|
|
export default ({ defaultPermissions }: Props) => {
|
|
return null;
|
|
};
|