1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 13:41:57 +02:00
onion/js/components/whitelabel/prize/portfolioreview/components/pr_hero.js
2015-11-11 16:27:50 +01:00

20 lines
480 B
JavaScript

'use strict';
import React from 'react';
import Glyphicon from 'react-bootstrap/lib/Glyphicon';
const PRHero = React.createClass({
render() {
return (
<div className="piece--hero">
<h2><Glyphicon glyph="ok" /> Congratulations!</h2>
<h1>You have successfully submitted to Portfolio Review 2016</h1>
<p>See below, your uploaded portfolio:</p>
</div>
);
}
});
export default PRHero;