mirror of
https://github.com/wassname/talk.git
synced 2026-08-09 12:30:42 +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;
|