mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-09-26 19:41:29 +08:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import { h } from 'preact';
|
|
|
|
export default function Link({ className, children, href, ...props }) {
|
|
return (
|
|
<a className={`text-blue-500 hover:underline ${className}`} href={href} {...props}>
|
|
{children}
|
|
</a>
|
|
);
|
|
}
|