mirror of
https://github.com/ascribe/onion.git
synced 2025-01-11 05:29:06 +01:00
21 lines
443 B
JavaScript
21 lines
443 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import constants from '../../../../constants/application_constants';
|
|
|
|
|
|
let Hero = React.createClass({
|
|
render() {
|
|
return (
|
|
<div className="hero">
|
|
<img
|
|
className="logo" src={constants.whitelabel.logo}
|
|
alt="Sluice Art Prize"
|
|
height="200px"/>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default Hero;
|