mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 11:33:02 +00:00
feat: integrate FAQ to webapp
This commit is contained in:
17
src/components/ProjectIssue.tsx
Normal file
17
src/components/ProjectIssue.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
export interface ProjectIssueProps {
|
||||
id: number | string;
|
||||
title?: string;
|
||||
}
|
||||
|
||||
export function ProjectIssue({ id, title }: ProjectIssueProps) {
|
||||
return (
|
||||
<a
|
||||
rel="noopener noreferrer nofollow"
|
||||
target="_blank"
|
||||
href={`https://git.unlock-music.dev/um/um-react/issues/${id}`}
|
||||
>
|
||||
{`#${id}`}
|
||||
{title && ` - ${title}`}
|
||||
</a>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user