-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1d5868
commit e14b1a2
Showing
14 changed files
with
254 additions
and
12 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
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,3 @@ | ||
--- | ||
fullName: Daniele Guido | ||
--- |
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,3 +1,3 @@ | ||
--- | ||
fullname: 'The Impresso Team' | ||
fullName: 'The Impresso Team' | ||
--- |
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 |
---|---|---|
|
@@ -15,11 +15,7 @@ const ModalLogin = ({ onClose, ...props }) => { | |
<Form> | ||
<Form.Group className='mb-3' controlId='ModalLoginForm.email'> | ||
<Form.Label>Email address</Form.Label> | ||
<Form.Control | ||
type='email' | ||
placeholder='[email protected]' | ||
autoFocus | ||
/> | ||
<Form.Control type='email' placeholder='[email protected]' /> | ||
</Form.Group> | ||
<Form.Group className='mb-3' controlId='ModalLoginForm.password'> | ||
<Form.Label>Password</Form.Label> | ||
|
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,18 @@ | ||
import React from 'react' | ||
import ModalView from './ModalView' | ||
import { ModalNotebookPreviewView } from '../store' | ||
import { Form, Modal } from 'react-bootstrap' | ||
|
||
const ModalNotebookPreview = ({ onClose, ...props }) => { | ||
return ( | ||
<ModalView viewName={ModalNotebookPreviewView} onClose={onClose} {...props}> | ||
<Modal.Header closeButton> | ||
<Modal.Title id='contained-modal-title-vcenter'> | ||
Using Grid in Modal | ||
</Modal.Title> | ||
</Modal.Header> | ||
<Modal.Body>This is a nice title indeed!</Modal.Body> | ||
</ModalView> | ||
) | ||
} | ||
export default ModalNotebookPreview |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"daniele-guido": { | ||
"name": "daniele-guido", | ||
"fullName": "Daniele Guido", | ||
"collections": [], | ||
"notebooks": [] | ||
}, | ||
"impresso-team": { | ||
"name": "impresso-team", | ||
"fullName": "The Impresso Team", | ||
"collections": [], | ||
"notebooks": [ | ||
"team-starter-pack" | ||
] | ||
} | ||
} |
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,20 @@ | ||
{ | ||
"enter-impresso": { | ||
"name": "enter-impresso", | ||
"path": "/collection/enter-impresso", | ||
"title": "Enter *impresso*", | ||
"excerpt": "Three easy steps to enter the impresso way of doing research.", | ||
"notebooks": [ | ||
"team-starter-pack" | ||
], | ||
"contributors": [ | ||
[ | ||
"impresso-team", | ||
{ | ||
"name": "impresso-team", | ||
"count": 1 | ||
} | ||
] | ||
] | ||
} | ||
} |
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,28 @@ | ||
{ | ||
"setup": { | ||
"name": "setup", | ||
"path": "/notebook/setup", | ||
"birthTime": "2024-02-20T11:22:42.754Z", | ||
"accessTime": "2024-03-01T11:18:39.885Z", | ||
"title": "Setup", | ||
"excerpt": "", | ||
"binderUrl": "https://mybinder.org/v2/gh/binder-examples/r/master?urlpath=rstudio", | ||
"authors": [], | ||
"collections": [] | ||
}, | ||
"team-starter-pack": { | ||
"name": "team-starter-pack", | ||
"path": "/notebook/team-starter-pack", | ||
"birthTime": "2024-02-09T16:55:21.331Z", | ||
"accessTime": "2024-03-07T09:16:28.892Z", | ||
"title": "A demo of RStudio running on Binder", | ||
"excerpt": "All together, right now.", | ||
"binderUrl": "https://mybinder.org/v2/gh/binder-examples/r/master?urlpath=rstudio", | ||
"authors": [ | ||
"impresso-team" | ||
], | ||
"collections": [ | ||
"enter-impresso" | ||
] | ||
} | ||
} |
Oops, something went wrong.