Skip to content

Commit

Permalink
DOCS: Remove PackageFactory Namspace
Browse files Browse the repository at this point in the history
  • Loading branch information
mficzel authored Nov 13, 2017
1 parent c6a1e2c commit 4123b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ prototype(Vendor.Site:Example) < prototype(Neos.Fusion:Component) {
<div>
<h1 @key="headline" class="headline">{props.title}</h1>
<h2 @key="subheadline" class="subheadline" @if.hasSubtitle={props.subtitle ? true : false}>{props.subtitle}</h2>
<PackageFactory.AtomicFusion.AFX:Image @key="image" uri={props.imageUri} />
<Vendor.Site:Image @key="image" uri={props.imageUri} />
</div>
`
}
Expand Down Expand Up @@ -61,7 +61,7 @@ prototype(Vendor.Site:Example) < prototype(Neos.Fusion:Component) {
attributes.subheadline = 'subheadline'
@if.hasSubtitle = ${props.subtitle ? true : false}
}
image = PackageFactory.AtomicFusion.AFX:Image {
image = Vendor.Site:Image {
uri = ${props.imageUri}
}
}
Expand Down

0 comments on commit 4123b47

Please sign in to comment.