mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 18:30:15 +01:00
16 lines
250 B
React
16 lines
250 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export default function TabLink(a) {
|
||
|
|
return (
|
||
|
|
<a
|
||
|
|
href={a.href}
|
||
|
|
title={a.title}
|
||
|
|
className={a.className}
|
||
|
|
target="_blank"
|
||
|
|
rel="noopener noreferrer"
|
||
|
|
>
|
||
|
|
{a.children}
|
||
|
|
</a>
|
||
|
|
);
|
||
|
|
}
|