/** * @license * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import LoadingSpinner from './LoadingSpinner'; interface JobMatchDashboardProps { score: number; suggestions: string[]; isLoading: boolean; hasContent: boolean; } export default function JobMatchDashboard({ score, suggestions, isLoading, hasContent }: JobMatchDashboardProps) { const gaugeRotation = (score / 100) * 180; // 0 score = 0deg, 100 score = 180deg if (!hasContent) { return (
No suggestions at the moment. Looks good!
)}