PHP Classes

File: pizzerine/src/components/Footer/Footer.js

Recommend this page to a friend!
  Classes of Hillary Kollan   React Laravel Stripe MailJet Pizza Ordering   pizzerine/src/components/Footer/Footer.js   Download  
File: pizzerine/src/components/Footer/Footer.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: React Laravel Stripe MailJet Pizza Ordering
Web application to process orders of Pizza
Author: By
Last change:
Date: 1 year ago
Size: 574 bytes
 

Contents

Class file image Download
import React from 'react'; import { Instagram } from '@mui/icons-material'; import { Twitter } from '@mui/icons-material'; import { Facebook } from '@mui/icons-material'; import { LinkedIn } from '@mui/icons-material'; import "./Footer.css"; export default function Footer() { return ( <div className='footer'> <div className='socialMedia'> <Instagram /> <Twitter /> <Facebook /> <LinkedIn /> </div> <p>&copy; 2021 sadatpizzaria.com</p> </div> ) }