var React = require('react'); var Box = require('../box/box.jsx'); require('./welcome.scss'); var Welcome = React.createClass({ type: 'Welcome', propTypes: { onDismiss: React.PropTypes.func }, getDefaultProps: function () { return { messages: { 'welcome.welcomeToScratch': 'Welcome to Scratch!', 'welcome.learn': 'Learn how to make a project in Scratch', 'welcome.tryOut': 'Try out starter projects', 'welcome.connect': 'Connect with other Scratchers' } }; }, render: function () { return (

{this.props.messages['welcome.learn']}

Get Started

{this.props.messages['welcome.tryOut']}

Starter Projects

{this.props.messages['welcome.connect']}

Connect
); } }); module.exports = Welcome;