* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
15 lines
312 B
TypeScript
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);
|