Posted in react
7893
12:24 am, October 12, 2021
 

What is a Stateless Functional Component in React

What is a Stateless Functional Component?

A stateless component is one that can recive data and render it, but it does not manage the provided data or track changes to it. 

This method creates a javascript function that returns JSX or null. Which is also known as a component or JSX component (or a react component?).

React also requires that you start the function name with a Capital Letter, which seems very picky. 

So you cant have a function called myFunction it has to be called MyFunction.

When testing this i could not get it to render properly, as i think you have to call the function within < and > according to this document

so rather than this to render the MyComponent function

ReactDOM.render(MyComponent, document.getElementById('root')) 

it becomes this

ReactDOM.render(<MyComponent />, document.getElementById('root'))

just testing this using the react browser tools, and it registers as a component!

HTML

<div id="root"></div>

Scripts

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/18.0.0-alpha-5fa4d79b0-20211008/umd/react.production.min.js" integrity="sha512-5PVmWGoNJocWPdQJmJd1aRbz3cFcFgXctWKLWcitqtgX64jF+ttfg9g2oLltmeQ1HUo3gT6QchaMK3h+S+JG4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.0.0-alpha-5fa4d79b0-20211008/umd/react-dom.production.min.js" integrity="sha512-pUsjUv+9XgkTn+UbLyNIT4YNZPF2p0E45FBKmDL7Ti8iovYwp2CUkQs6Q7J9y5scLxWaOM+T5jJc0ls+WHUcmQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script type="text/babel">
const MyComponent = function() {
  // Change code below this line
	return (
      <div className="my-component">
      	The text string in my class. 
      </div>
      );
  // Change code above this line
}
// ReactDOM.render(MyComponent, document.getElementById('root'))
ReactDOM.render(<MyComponent />, document.getElementById('root'))
</script>

Javascript

/*
const MyComponent = function() {
  // Change code below this line
	return (
      <div className="my-component">
      	The text string in my class. 
      </div>
      );
  // Change code above this line
}
*/

External Link for What is a Stateless Functional Component in React

View Statistics
This Week
198
This Month
831
This Year
707

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
“We ought to take outdoor walks in order that the mind may be strengthened and refreshed by the open air and much breathing.".
Seneca
Random CSS Property

repeating-radial-gradient()

The repeating-radial-gradient() CSS function creates an image consisting of repeating gradients that radiate from an origin. It is similar to radial-gradient() and takes the same arguments, but it repeats the color stops infinitely in all directions so as to cover its entire container, similar to repeating-linear-gradient(). The function's result is an object of the <gradient> data type, which is a special kind of <image>.
repeating-radial-gradient() css reference