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
import React from 'react'; | |
import messages from './messages.js'; | |
import { Link } from 'react-router'; | |
import {FormattedMessage, injectIntl, intlShape} from 'react-intl'; | |
class Home extends React.Component { | |
render() { | |
const t = this.props.intl.formatMessage; | |
return ( | |
<div> |
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
<aura:component | |
implements="flexipage:availableForRecordHome,force:lightningQuickActionWithoutHeader,force:hasRecordId" | |
controller="QueryController" | |
access="global" | |
> | |
<ltng:require | |
scripts="{!join(',', | |
$Resource.babelHelpers, | |
$Resource.actions, | |
$Resource.reducers)}" |