10 lines
106 B
JavaScript
10 lines
106 B
JavaScript
|
/** @format */
|
||
|
|
||
|
const getNotices = state => {
|
||
|
return state.notices;
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
getNotices,
|
||
|
};
|