Fixed: React warning

This commit is contained in:
Tom Moor
2019-01-06 14:19:08 -08:00
parent c970cddd14
commit 12e324d34c

View File

@ -26,15 +26,15 @@ export default function Pricing() {
itemType="http://schema.org/Product" itemType="http://schema.org/Product"
> >
<div> <div>
<Name itemprop="name">Free</Name> <Name itemProp="name">Free</Name>
<Price> <Price>
<span itemprop="priceCurrency" content="USD"> <span itemProp="priceCurrency" content="USD">
$ $
</span> </span>
<span itemprop="price">0</span> <span itemProp="price">0</span>
</Price> </Price>
</div> </div>
<div itemprop="description"> <div itemProp="description">
<h4>Top features:</h4> <h4>Top features:</h4>
<ul> <ul>
<li>Upto 5 team members</li> <li>Upto 5 team members</li>
@ -50,18 +50,18 @@ export default function Pricing() {
itemType="http://schema.org/Product" itemType="http://schema.org/Product"
> >
<div> <div>
<Name itemprop="name">Standard</Name> <Name itemProp="name">Standard</Name>
<Price> <Price>
<span itemprop="priceCurrency" content="USD"> <span itemProp="priceCurrency" content="USD">
$ $
</span> </span>
<span itemprop="price">5</span>{' '} <span itemProp="price">5</span>{' '}
<Period> <Period>
<strong>per seat</strong> per month <strong>per seat</strong> per month
</Period> </Period>
</Price> </Price>
</div> </div>
<div itemprop="description"> <div itemProp="description">
<h4>Top features:</h4> <h4>Top features:</h4>
<ul> <ul>
<li>Unlimited team members</li> <li>Unlimited team members</li>
@ -90,15 +90,15 @@ export default function Pricing() {
itemType="http://schema.org/Product" itemType="http://schema.org/Product"
> >
<div> <div>
<Name itemprop="name">Open Source</Name> <Name itemProp="name">Open Source</Name>
<Price> <Price>
<span itemprop="priceCurrency" content="USD"> <span itemProp="priceCurrency" content="USD">
$ $
</span> </span>
<span itemprop="price">0</span> <span itemProp="price">0</span>
</Price> </Price>
</div> </div>
<p itemprop="description"> <p itemProp="description">
Outlines codebase is open source. If you wish to run the service Outlines codebase is open source. If you wish to run the service
on your own infrastructure you can do so. on your own infrastructure you can do so.
</p> </p>
@ -114,16 +114,16 @@ export default function Pricing() {
itemType="http://schema.org/Product" itemType="http://schema.org/Product"
> >
<div> <div>
<Name itemprop="name">Enterprise</Name> <Name itemProp="name">Enterprise</Name>
<Price> <Price>
<span itemprop="priceCurrency" content="USD"> <span itemProp="priceCurrency" content="USD">
$ $
</span> </span>
<span itemprop="price">199</span> <Period>per month</Period> <span itemProp="price">199</span> <Period>per month</Period>
</Price> </Price>
</div> </div>
<p itemprop="description"> <p itemProp="description">
Support continued development of Outline. Get dedicated support Support continued development of Outline. Get dedicated support
with setup, maintainence, and product issues. with setup, maintainence, and product issues.
</p> </p>