Extracted React Component for the birds on this chrome experiment
Add Three.JS to your web project <script src="https://ajax.googleapis.com/ajax/libs/threejs/r69/three.min.js"></script>
Download from NPM npm install react-birds --save
Then include the component into your react like so:
'use strict';
import React from 'react';
import ReactDOM from 'react-dom';
import Birds from 'react-birds';
ReactDOM.render(
<Birds />, // Render Component
document.getElementById('entry')
);These birds gave the website neat aesthetic feel; therefore, I abstracted the birds to their own component.