DEV Community

Freecodez
Freecodez

Posted on

React component for an amazing card border and glow animation

Hey there, You are most welcome to this article. I hope you will enjoy this article. If you like this article then please share this article with your friends and colleagues. If you have any questions or suggestions regarding this article then please comment down below.

React component for an amazing card border and glow animation

React component for an amazing card border and glow animation

For full source code visit : https://freecodez.com/post/tfrt9rz

// https://freecodez.com
const Hello = (props) => {
    return (
        <div class="card" role="button">
            <span class="glow"></span>
            <div class="inner">
                <span>cool</span>Glowing shadows <br/>
                {props.txt}
            </div>
        </div>
    );
};

Enter fullscreen mode Exit fullscreen mode

Source Code : https://freecodez.com/post/tfrt9rz

For more such articles visit : https://freecodez.com

Top comments (0)