Open devlemire opened 7 years ago
Tabs:
const initialState = {
posts: []
};
export default function post( state = initialState, action ) {
switch ( action.type ) {
default: return state;
}
}
Spaces:
const initialState = {
posts: []
};
export default function post( state = initialState, action ) {
switch ( action.type ) {
default: return state;
}
}
Priority: Very Minor
Code snippets using tabs are appearing to have over indentation, if tabs were replaced with two spaces code would have proper looking indentation.