mirror of
https://github.com/wassname/talk.git
synced 2026-07-21 12:51:03 +08:00
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
import React from 'react';
|
|
|
|
export const FormCSRFInput = React.createClass({
|
|
render() {
|
|
const {csrfToken} = this.props;
|
|
|
|
return (
|
|
<input type="hidden" name="_csrf" value={csrfToken} />
|
|
);
|
|
}
|
|
});
|