import { styled, Typography } from '@mui/material'; import type { FC } from 'react'; import { Link } from 'react-router-dom'; import Lightbulb from '@mui/icons-material/LightbulbOutlined'; const TitleContainer = styled('div')(({ theme }) => ({ display: 'flex', flexDirection: 'row', gap: theme.spacing(2), alignItems: 'center', justifyContent: 'center', })); const ActionBox = styled('article')(({ theme }) => ({ padding: theme.spacing(4, 2), display: 'flex', gap: theme.spacing(3), flexDirection: 'column', })); export const ProjectSetupComplete: FC<{ project: string }> = ({ project }) => { return (

Project Insight

This project already has connected SDKs and existing feature flags. Create a new feature flag {' '} or go to the{' '} go to the project {' '} to work with existing flags
); };