import React from 'react'; export class App extends React.Component { render() { let text = 'My App'; return (

{text !== '' ? text : 'Default App Name'}

); } }