9 lines
126 B
JavaScript
9 lines
126 B
JavaScript
import { SETTINGS } from 'actions/types';
|
|
|
|
export default function(props) {
|
|
return {
|
|
type: SETTINGS,
|
|
...props
|
|
}
|
|
}
|