Advertisement
cindex1a

index.js

Feb 22nd, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from "react";
  2. import Fade from "react-reveal/Fade";
  3.  
  4. export default function Controller(props) {
  5.   return (
  6.     <Fade>
  7.       <section className="container">
  8.         <div className="row justify-content-center">
  9.           <div className="col-3">{props.children}</div>
  10.         </div>
  11.       </section>
  12.     </Fade>
  13.   );
  14. }
  15. //controller.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement