Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
14 lines (12 sloc) 321 Bytes
import React from 'react';
import { render, Artboard, Text, View } from 'react-sketchapp';
const Document = () => (
<Artboard name="Hi React-sketchapp" style={{
padding: 50
}}>
<Text>Hi, Designer!</Text>
</Artboard>
)
export default (context) => {
render(<Document />, context.document.currentPage())
}
You can’t perform that action at this time.