feat: test id do copyright

This commit is contained in:
marlon passos 2023-03-29 13:43:04 -03:00
parent cb09072bc0
commit 6a12c304e1

View File

@ -7,7 +7,7 @@ interface TextProps {
const Text = ({ text, className, testId}: TextProps) => (
<p
className={className}
data-tesid={testId}
data-testid={testId}
>
{text}
</p>