/** @format */ /** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Component } from '@wordpress/element'; /** * Internal depdencies */ import './style.scss'; import { H } from '@woocommerce/components'; export default class TaskList extends Component { render() { return (
{ __( 'Welcome to the WooCommerce Dashboard', 'woocommerce-admin' ) } { __( "Here we'll guide you through the remaining tasks " + 'to get your store ready for launch', 'woocommerce-admin' ) }
); } }