Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 84e42b1

Browse files
committed
fixed link issues
1 parent f560340 commit 84e42b1

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

docs/packages/core/features/collection/Introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WIP docs!
1414
A Collection holds a set of Information that we need to remember at a later point in time.
1515
It is designed for arrays of data objects following the same structure.
1616
Be aware that each collected Data needs an **unique primaryKey** to properly identify it later.
17-
We instantiate a Collection with help of an [Agile Instance](../packages/core/features/agile-instance) here called `App`.
17+
We instantiate a Collection with help of an [Agile Instance](../agile-instance/Introduction.md) here called `App`.
1818
By doing this the Collection gets automatically bound to the Agile Instance it was created from.
1919
```ts
2020
const MY_COLLECTION = App.createCollection();
@@ -49,7 +49,7 @@ const myItem = MY_COLLECTION.getItem(1);
4949
myItem.patch({name: "frank"}); // Update property 'name' in Item
5050
```
5151

52-
## 👨‍👧‍👦 [Group](../group/Introduction.md)
52+
## 👨‍👧‍👦 [Group](./group/Introduction.md)
5353

5454
Often applications need to categorize and preserve ordering of structured data and
5555
in AgileTs Groups are the cleanest way to reach this goal. They allow us to
@@ -83,7 +83,7 @@ To get the right value to the primary Keys just use `output` property.
8383
MY_GROUP.output; // Returns '[{ id: 8, name: 'jeff' }, ...]'
8484
```
8585

86-
## 🔮 [Selector](../selector/Introduction.md)
86+
## 🔮 [Selector](./selector/Introduction.md)
8787

8888
Selectors allow us to _select_ an Item from a Collection.
8989
We might use the Selector, if we want to select a 'current User' from our User Collection or

docs/packages/core/features/state/Introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ WIP docs!
1313

1414
A State holds an Information that we need to remember at a later point in time.
1515
It is the foundation of AgileTs, nearly everything is based or depends on the functionality of States.
16-
We instantiate a State with help of an [Agile Instance](../packages/core/features/agile-instance) here called `App`.
16+
We instantiate a State with help of an [Agile Instance](../agile-instance/Introduction.md) here called `App`.
1717
By doing this the State gets automatically bound to the Agile Instance it was created from.
1818
```ts
1919
const MY_STATE = App.createState("Hello World");

docs/quick_start/React.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ integrate AgileTs into React, the `react` package.
1919
npm install @agile-ts/core
2020
```
2121

22-
Let's start with the `core` package, which acts as the brain of AgileTs and manages all our [States](../packages/core/features/state/Introduction.md), [Collections](../packages/core/features/collection/Introduction.md), ..
22+
Let's start with the `core` package, which acts as the brain of AgileTs
23+
and manages all our [States](../packages/core/features/state/Introduction.md),
24+
[Collections](../packages/core/features/collection/Introduction.md), ..
2325

2426
### 📂 `@agile-ts/react`
2527

@@ -67,7 +69,7 @@ If you have chosen this way there is no need to follow the installation steps ab
6769

6870
### ❓ What is a State
6971
A State holds an Information that you need to remember at a later point in time.
70-
It gets created with help of an [Agile Instance](../packages/core/features/agile-instance) here called `App`.
72+
It gets created with help of an [Agile Instance](../packages/core/features/agile-instance/Introduction.md) here called `App`.
7173
```ts
7274
const MY_FIRST_STATE = App.createState("Hello World");
7375
```
@@ -157,7 +159,7 @@ in which we just pass our desired new value.
157159

158160
### ❓ What is a Collection
159161
A Collection is like an array of object shaped data following the same pattern.
160-
It gets created with help of an [Agile Instance](../packages/core/features/agile-instance) here called `App`.
162+
It gets created with help of an [Agile Instance](../packages/core/features/agile-instance/Introduction.md) here called `App`.
161163
```ts
162164
const MY_COLLECTION = App.createCollection();
163165
```

0 commit comments

Comments
 (0)