> For the complete documentation index, see [llms.txt](https://v5.docs.allcancode.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://v5.docs.allcancode.com/writing-frontend-logic/sharing-data-between-pages-screens-components.md).

# Sharing data between pages/screens/components

You can share data by using sessions or props

Using sessions:

Sharing data with session is global and you can access (read, change) data by any page or component

<figure><img src="https://1127799972-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiibRrLuxVy9iwcIbtQmW%2Fuploads%2FZHBOx0zNuD374GCDnP2K%2FScreenshot%202023-11-08%20at%205.42.37%E2%80%AFPM.png?alt=media&amp;token=4930d5b0-99f5-4370-a58a-487027006e96" alt=""><figcaption></figcaption></figure>

Using props:

Sharing data with props is when a child component uses father's component data

Right click on child component and select "Properties"

<figure><img src="https://1127799972-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiibRrLuxVy9iwcIbtQmW%2Fuploads%2FnT3e6d12tOPCOPNmmK5Q%2FScreenshot%202023-11-08%20at%205.18.31%E2%80%AFPM.png?alt=media&amp;token=99e609dd-59ac-4bbf-adc8-69e8411344a0" alt=""><figcaption></figcaption></figure>

Add a prop, fill in the name and tap on "CREATE"

<figure><img src="https://1127799972-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiibRrLuxVy9iwcIbtQmW%2Fuploads%2Fldccyrb8vFofQwBByKRo%2FScreenshot%202023-11-08%20at%205.22.51%E2%80%AFPM.png?alt=media&amp;token=676d9131-5fc0-43d7-8bdb-07eed49d8e8a" alt=""><figcaption></figcaption></figure>

Click at the component, select the child component and fill in the data field at "CONTENT" in the "Settings attributes tab" with the data you want to share with the child component

<figure><img src="https://1127799972-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FiibRrLuxVy9iwcIbtQmW%2Fuploads%2FcDFpl9enMbC8piOhqEwf%2FScreenshot%202023-11-08%20at%205.31.17%E2%80%AFPM.png?alt=media&amp;token=3f0d4c0c-f602-4409-b662-5e2fd8e43a40" alt=""><figcaption></figcaption></figure>
