diff options
author | 2021-11-22 13:38:53 -0700 | |
---|---|---|
committer | 2021-11-22 13:38:53 -0700 | |
commit | ce8f8e06c0d79fbe44538a1d63c5bf3a79ba27ff (patch) | |
tree | cca0a8f06b680ceac2cbb347415d3ef88c4d4df8 /examples/framework-multiple/src/components/SolidCounter.tsx | |
parent | e49452325ce563ac7e46291d4654037075702316 (diff) | |
download | astro-ce8f8e06c0d79fbe44538a1d63c5bf3a79ba27ff.tar.gz astro-ce8f8e06c0d79fbe44538a1d63c5bf3a79ba27ff.tar.zst astro-ce8f8e06c0d79fbe44538a1d63c5bf3a79ba27ff.zip |
Clean up styling for framework-* examples (#1970)
Diffstat (limited to 'examples/framework-multiple/src/components/SolidCounter.tsx')
-rw-r--r-- | examples/framework-multiple/src/components/SolidCounter.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/framework-multiple/src/components/SolidCounter.tsx b/examples/framework-multiple/src/components/SolidCounter.tsx index 5a9ebe9d5..63fe5cb11 100644 --- a/examples/framework-multiple/src/components/SolidCounter.tsx +++ b/examples/framework-multiple/src/components/SolidCounter.tsx @@ -13,7 +13,7 @@ export default function SolidCounter({ children }) { <pre>{count()}</pre> <button onClick={add}>+</button> </div> - <div class="children">{children}</div> + <div class="counter-message">{children}</div> </> ); } |