computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
522 B
22 lines
522 B
--- |
|
import AstroIcon from './AstroIcon.astro'; |
|
import Icon from './AstroIcon.astro'; |
|
import ResourceProgressStats from './ResourceProgressStats.astro'; |
|
|
|
export interface Props { |
|
roadmapId: string; |
|
tnsBannerLink?: string; |
|
titleQuestion?: string; |
|
titleAnswer?: string; |
|
} |
|
|
|
const { roadmapId, tnsBannerLink } = Astro.props; |
|
const hasTnsBanner = !!tnsBannerLink; |
|
--- |
|
|
|
<div class:list={['mb-0 rounded-md border mt-2 bg-white']}> |
|
<ResourceProgressStats |
|
resourceId={roadmapId} |
|
resourceType='roadmap' |
|
/> |
|
</div>
|
|
|