mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
21 lines
327 B
JavaScript
21 lines
327 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
let TableItemAcl = React.createClass({
|
|
propTypes: {
|
|
content: React.PropTypes.array.isRequired
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<span>
|
|
{this.props.content.join('/')}
|
|
</span>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default TableItemAcl;
|