AI Researcher and Video Studio implementation complete

This commit is contained in:
ajaysi
2026-01-05 15:49:51 +05:30
parent b134e9dc7e
commit 0b63ae7fc1
200 changed files with 39535 additions and 1375 deletions

View File

@@ -4,9 +4,15 @@ import { ResearchSources, ResearchGrounding, GoogleSearchModal } from './Researc
interface ResearchResultsProps {
research: BlogResearchResponse;
showSourcesOnly?: boolean;
showAnalysisOnly?: boolean;
}
export const ResearchResults: React.FC<ResearchResultsProps> = ({ research }) => {
export const ResearchResults: React.FC<ResearchResultsProps> = ({
research,
showSourcesOnly = false,
showAnalysisOnly = false,
}) => {
const [showAnglesModal, setShowAnglesModal] = useState(false);
const [showCompetitorModal, setShowCompetitorModal] = useState(false);
const [showGroundingModal, setShowGroundingModal] = useState(false);