This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export function toggleSidebar(){ | |
| return { | |
| type: TOGGLE_SIDE_NAV, | |
| text: "TEST", | |
| } | |
| } | |
| export default function(state = true, action) { | |
| console.log('default state', state, action); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ProjectListLi = ({index, project, canManageProjects, editClickCB, selectProject}) => ( | |
| <li className="col-sm-3" role="menuitem" onClick={(e) => selectProject(project)}> | |
| <div id={project.name + '-' + project.id} className={'tile'}> | |
| <h3>{project.name}</h3> | |
| {canManageProjects && ( | |
| <div className="edit-bar text-muted" onClick={(e) => editClickCB(e, project)}> | |
| <i className="glyphicon glyphicon-pencil"></i> EDIT | |
| </div> | |
| )} | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # feature | |
| feature TELEMETRY | |
| feature AIRMODE | |
| feature ESC_SENSOR | |
| feature ANTI_GRAVITY | |
| feature DYNAMIC_FILTER | |
| # beeper | |
| beeper -ON_USB |
OlderNewer