File size: 327 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';


const Footer = (props) => {
    return (
        <div className="splash-footer">
            <span>Introducing Airbnb Luxe</span> <br/>
            <span>&emsp;&emsp;Extraordinary homes</span> <br/>
            <span>with five-star everything</span>
        </div>
    )
};

export default Footer;