atlp-rwanda/hackers-ec-Fe

View on GitHub
src/components/redirections/UserRedirectionInput.tsx

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
interface TextProps {
    text: string;
    otherStyles?: string;
}

const UserRedirectionInput = ({ text, otherStyles }: TextProps) => {
    return (
        <>
            <p className={otherStyles}>{text}</p>
        </>
    );
};

export default UserRedirectionInput;