summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2018-10-10 18:56:20 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2018-10-10 18:56:20 -0700
commitf3965a464f23778437741fbe2fe97638aa621560 (patch)
tree15d0803e56b1b54283acf2fa56eb050d567b00db
parent0de975e8d57ff3cb520cf57b5a99023c409e2f4c (diff)
Use external prism style
-rw-r--r--presentation/src/presentation.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/presentation/src/presentation.js b/presentation/src/presentation.js
index dabf2a6..6405bd5 100644
--- a/presentation/src/presentation.js
+++ b/presentation/src/presentation.js
@@ -9,7 +9,7 @@ import {
List,
Slide,
Text,
- CodePane,
+ CodePane as SCodePane,
Image,
Link
} from 'spectacle'
@@ -60,6 +60,7 @@ const theme = createTheme(
)
const ListItem = p => <SListItem margin="0 0 20px 0" textSize="1.2em" {...p} />
+const CodePane = p => <SCodePane theme="external" {...p} />
export default class Presentation extends React.Component {
render() {