-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from hedgepigdaniel/decision-making
WIP - Added inital files for decision making UI
- Loading branch information
Showing
7 changed files
with
92 additions
and
148 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
import React from 'react' | ||
import { admin } from '../css/Switcher' | ||
|
||
export default () => <div className={admin}>U FIGURED OUT HOW TO DO AUTH!</div> | ||
import DateTimePicker from './DateTimePicker' | ||
import MeetingTable from './MeetingTable' | ||
|
||
const MeetingAgenda = () => | ||
<div> | ||
<label htmlFor='MettingDate'> Meeting Date </label> | ||
<DateTimePicker /> | ||
<div> | ||
<MeetingTable /> | ||
<button>Add another </button> | ||
</div> | ||
</div> | ||
|
||
export default MeetingAgenda |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
import DateTime from 'react-datetime' | ||
|
||
const DateTimePicker = () => | ||
<div> | ||
<DateTime /> | ||
</div> | ||
|
||
export default DateTimePicker |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react' | ||
|
||
const MeetingTable = () => | ||
<div> | ||
<div> | ||
<label htmlFor='MettingPoint'>Meeting point</label> | ||
<input /> | ||
</div> | ||
<div> | ||
<label htmlFor='ShortDesc'> Short Desc </label> | ||
<textarea /> | ||
</div> | ||
<div> | ||
<label htmlFor='NumVotes'> Num of votes reqd </label> | ||
<input /> | ||
</div> | ||
</div> | ||
|
||
export default MeetingTable |
This file contains 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
Oops, something went wrong.