static-cms/src/components/Widgets/TextPreview.js
Cássio Souza 2a2497072d UI updates (#151)
* infer card title

* Infer entry body & image

* infer image

* Better terminology: EntryListing accept a single Collection

* remove log

* Refactored Collections VO into selectors

* use selectors when showning card

* fixed size cards

* Added 'bio' and 'biography' to collection description inference synonyms

* Removed unused card file

* throw error instance

* bugfix for file based collections

* lint

* moved components with css to own folder

* Search Bugfix: More than one collection might be returned

* Changed sidebar implementation. Closes #104 & #152

* Show spinning loading for unpublished entries

* Refactored Sidebar into a separate container

* Make preview widgets more robust
2016-11-11 17:54:58 -02:00

10 lines
206 B
JavaScript

import React, { PropTypes } from 'react';
export default function TextPreview({ value }) {
return <span>{value ? value.toString() : null}</span>;
}
TextPreview.propTypes = {
value: PropTypes.node,
};