Browse Source

Initial Commit (#4358)

main
Strek 3 years ago
committed by GitHub
parent
commit
5b8a720ece
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      beta/src/components/MDX/YouWillLearnCard.tsx
  2. 2
      beta/src/pages/apis/index.md

2
beta/src/components/MDX/YouWillLearnCard.tsx

@ -14,7 +14,7 @@ interface YouWillLearnCardProps {
function YouWillLearnCard({title, path, children}: YouWillLearnCardProps) {
return (
<div className="flex flex-col h-full bg-card dark:bg-card-dark shadow-inner justify-between rounded-lg pb-8 p-6 xl:p-8">
<div className="flex flex-col h-full bg-card dark:bg-card-dark shadow-inner justify-between rounded-lg pb-8 p-6 xl:p-8 mt-3">
<div>
<h4 className="text-primary dark:text-primary-dark font-bold text-2xl leading-tight">
{title}

2
beta/src/pages/apis/index.md

@ -52,7 +52,7 @@ Declares a ref.
```js
function MyComponent() {
const inputRef = useState(null);
const inputRef = useRef(null);
// ...
```

Loading…
Cancel
Save