8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
|
|
export function updateBreakpoint( breakpoint ) {
|
|
return {
|
|
type: 'UPDATE_BREAKPOINT',
|
|
breakpoint,
|
|
};
|
|
}
|