Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 279 Bytes

readme.md

File metadata and controls

14 lines (12 loc) · 279 Bytes

#Features - #1 - Font Awesome usage:

import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'

        export const Food = () => (
        <div>
            Favorite Food: <FontAwesomeIcon icon="stroopwafel" />
        </div>
        )