react-full-page icon indicating copy to clipboard operation
react-full-page copied to clipboard

why it can not work?

Open sophieChenyx opened this issue 4 years ago • 1 comments

i don not konw why , I have tried many times but still can not work

code =>

import { FullPage, Slide } from 'react-full-page';
const App = () => (
<FullPage controls>
      <Slide>
        <h1>Inner slide content</h1>
      </Slide>
      <Slide>
        <h1>Another slide content</h1>
      </Slide>
      <Slide>
        <h1>Anotdsadher slide content</h1>
      </Slide>
    </FullPage>
);
 

"react-full-page": "^0.1.11",

sophieChenyx avatar Oct 13 '20 07:10 sophieChenyx

Add a return statement like so:

function App() {
  return (
     <your code>
  );
}

mpnouwens avatar Aug 01 '21 11:08 mpnouwens