centertoviewport
v1.0.8
Published
A React Component to center anything in the middle of the viewport
Downloads
10
Maintainers
Readme
Center To Viewport
A React Component to center anything in the middle of the viewport
How to use it?
First, install it using npm
:
npm install centertoviewport
And wrap your code with the CenterToViewport
component:
import { CenterToViewport } from 'centertoviewport';
function App() {
return (
<CenterToViewport>
<h1>This is centered</h1>
</CenterToViewport>
);
}
export default App;
Warning
For the correct functioning of the component, ensure your viewport has no padding or margin.