PluginsPage.tsx 277 B

123456789101112
  1. import React from 'react';
  2. import { PluginsView } from '../../../components/views/PluginsView';
  3. const PluginsPage: React.FC = () => {
  4. return (
  5. <div className="flex flex-col h-full">
  6. <PluginsView />
  7. </div>
  8. );
  9. };
  10. export default PluginsPage;