10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
export function Auth() {
|
||
return (
|
||
<div>
|
||
<a href="/logout" className="text-primary-800 text-sm">
|
||
Выход
|
||
</a>
|
||
</div>
|
||
);
|
||
}
|