A lightweight react library to create fullpage websites
Here's a preview
You can check out a live demo here
View it being used in my personal blog at faisalrashid.online
npm install --save fullpage-react-fs
or
yarn add fullpage-react-fs
import React from 'react'
import { FullPageContainer, FullPagePanel } from 'fullpage-react-fs'
import 'fullpage-react-fs/dist/index.css'
export const App = () => {
return (
<FullPageContainer showIndicators={true}>
{/* Panel 1 */}
<FullPagePanel bgColor='azure'>
Your Content
</FullPagePanel>
{/* Panel 2 */}
<FullPagePanel bgColor='lightgoldenrodyellow'>
<div>Goes</div>
</FullPagePanel>
{/* Panel 3 */}
<FullPagePanel>
<h1>here</h1>
</FullPagePanel>
</FullPageContainer>
)
}
As shown in the sample code above do not forget to import the CSS file.
MIT © FaisalST32