mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 18:30:09 +08:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
import React from 'react';
|
|
|
|
const FormCSRFField = ({...props}) => (
|
|
<input type="hidden" name="_csrf" value={props.csrfToken_csrf} />
|
|
);
|
|
|
|
export default FormCSRFField;
|