Skip to content

Instantly share code, notes, and snippets.

@mkhuda
Created April 23, 2025 14:31
Show Gist options
  • Save mkhuda/d5312dc876fb21e8c62b86d93c2dd7bf to your computer and use it in GitHub Desktop.
Save mkhuda/d5312dc876fb21e8c62b86d93c2dd7bf to your computer and use it in GitHub Desktop.
import React from 'react';
import { ReactShadowRoot } from 'react-shadow-root';
const ShadowButton = () => {
return (
<ReactShadowRoot>
<style>
{`
button {
background-color: #6200ea;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #3700b3;
}
`}
</style>
<button>Click Me!</button>
</ReactShadowRoot>
);
};
export default ShadowButton;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment