chore(curriculum): remove before/after user code (batch 05) (#66499)

This commit is contained in:
Sem Bauke
2026-03-17 10:58:57 +01:00
committed by GitHub
parent ae153f8f08
commit 2c2405b1c8
5 changed files with 0 additions and 30 deletions
@@ -59,12 +59,6 @@ The rendered `h1` heading element should contain text rendered from the componen
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(<MyComponent />, document.getElementById('root'))
```
## --seed-contents--
```jsx
@@ -76,12 +76,6 @@ Calling the `handleClick` method on `MyComponent` should set the name property i
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(<MyComponent />, document.getElementById('root'))
```
## --seed-contents--
```jsx
@@ -69,12 +69,6 @@ Clicking the `button` element should run the `handleClick` method and set the st
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(<MyComponent />, document.getElementById('root'))
```
## --seed-contents--
```jsx
@@ -112,12 +112,6 @@ assert(!/this\.setState\([^}]*this/.test(code));
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(<MyComponent />, document.getElementById('root'));
```
## --seed-contents--
```jsx
@@ -69,12 +69,6 @@ assert(currentCountElement.text() === 'Current Count: 0');
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(<Counter />, document.getElementById('root'))
```
## --seed-contents--
```jsx