import { motion } from 'framer-motion'; import React, { Suspense } from 'react'; // Use React.lazy for dynamic imports const GithubConnection = React.lazy(() => import('./GithubConnection')); const NetlifyConnection = React.lazy(() => import('./NetlifyConnection')); // Loading fallback component const LoadingFallback = () => (
Loading connection...
); export default function ConnectionsTab() { return (
{/* Header */}

Connection Settings

Manage your external service connections and integrations

}> }>
); }