* Moving files to their new homes. Subsequent commit will wire everything up again. * Relink files and split stylesheet. Requires adding resolve-url-loader to fix sass import relativity. * Remove browserslist warning. * Remove the need for ProfileMain * Fix test issues - needed thunk.
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
import React from 'react';
|
|
|
|
function Banner() {
|
|
return <div className="profile-page-bg-banner bg-primary d-none d-md-block p-relative" />;
|
|
}
|
|
|
|
export default Banner;
|