Move pattern-replacement file lists into a separate file

Move pattern-replacement file lists into a separate file

punt the react stuff for now
This commit is contained in:
Calen Pennington
2018-02-20 16:34:56 -05:00
committed by Ari Rizzitano
parent c8e1e14479
commit 52e7af4148
3 changed files with 126 additions and 130 deletions

View File

@@ -1,24 +0,0 @@
/* global gettext */
import PropTypes from 'prop-types';
import React from 'react';
export class NoTextbooks extends React.Component {
render() {
return (
<div className="no-textbook-content">
<p>
{gettext("You haven't added any textbooks to this course yet.")}
<a href="#" className="button new-button">
<span className="icon fa fa-plus" aria-hidden="true"></span>
{gettext("Add your first textbook")}
</a>
</p>
</div>
);
}
}
NoTextbooks.propTypes = {
};