react-water-wave icon indicating copy to clipboard operation
react-water-wave copied to clipboard

Is this working with class based component?

Open cyruslk opened this issue 3 years ago • 0 comments

Hey - was wondering if this was working with class based components? I'm not able to make it work when I do it as such:

class App extends Component {
 
  render() {
  return (
    <div>
        <WaterWave
          imageUrl={img}
        >
        </WaterWave>
    </div>
  );
  }
 }

export default App;

cyruslk avatar Apr 20 '21 21:04 cyruslk