mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
22 lines
284 B
JavaScript
22 lines
284 B
JavaScript
import React from 'react'
|
|
|
|
const Provider = props => (
|
|
<div>
|
|
{props.children}
|
|
<div
|
|
css={{
|
|
position: 'fixed',
|
|
right: 0,
|
|
bottom: 0,
|
|
margin: 16,
|
|
}}
|
|
>
|
|
Put your name here
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default {
|
|
Provider,
|
|
}
|