Skip to content

Instantly share code, notes, and snippets.

@karenying
Created June 16, 2020 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karenying/7961078e3ce798986f42082832f1cb02 to your computer and use it in GitHub Desktop.
Save karenying/7961078e3ce798986f42082832f1cb02 to your computer and use it in GitHub Desktop.
import React from 'react';
import './App.css';
import CarouselSlide from './CarouselSlide';
import { SLIDE_INFO } from './constants';
function App() {
const content = SLIDE_INFO[3];
return (
<div className='App'>
<CarouselSlide content={content} />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment