mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 03:34:53 +00:00
23 lines
588 B
JavaScript
23 lines
588 B
JavaScript
/**
|
|
*
|
|
* PluginHeaderActions
|
|
*
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
import styles from './styles.css';
|
|
|
|
class PluginHeaderActions extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
|
render() {
|
|
return (
|
|
<div className={`${styles.pluginHeaderActions} pull-lg-right`}>
|
|
<button type="button" className={`${styles.pluginHeaderActionsButton} btn btn-secondary`}>Cancel</button>
|
|
<button type="button" className={`${styles.pluginHeaderActionsButton} btn btn-primary`}>Save</button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default PluginHeaderActions;
|