openreplay/frontend/app/components/Client/Sites/ProjectKey.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

15 lines
312 B
TypeScript

import { withCopy } from 'HOCs';
import React from 'react';
import { Tag } from 'antd';
function ProjectKey({ value }: any) {
return (
<div className="w-fit">
<Tag bordered={false} className="text-base font-mono">
{value}
</Tag>
</div>
);
}
export default withCopy(ProjectKey);