9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
export default (id = null) => ({
|
|
id,
|
|
type: 'contentState',
|
|
selectionStart: 0,
|
|
selectionEnd: 0,
|
|
scrollPosition: null,
|
|
hash: 0,
|
|
});
|