-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
022e423
commit 37fda10
Showing
6 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
packages/platform/atoms/event-type/event-type-settings/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type EventTypeSettingsProp = { | ||
id?: string; | ||
}; | ||
|
||
export function EventTypeSettings({ id }: EventTypeSettingsProp) { | ||
return <>This returns the event type settings atom</>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export { EventType } from "./index"; | ||
export { EventTypeSettings } from "./event-type-settings/index"; | ||
export * from "../types"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type EventTypeProp = { | ||
id?: string; | ||
}; | ||
|
||
export function EventType({ id }: EventTypeProp) { | ||
return <>This returns the event type atom</>; | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/platform/atoms/event-type/tabs/availability/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function Availability() { | ||
return <>This renders the availability setup tab</>; | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/platform/atoms/event-type/tabs/event-setup/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function EventSetup() { | ||
return <>This renders the event setup tab</>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export { Booker } from "./booker/Booker"; | ||
export { CalProvider } from "./cal-provider/index"; | ||
export { ConnectToCal } from "./connect-to-cal-button/index"; | ||
export { EventType } from "./event-type/index"; | ||
export { EventTypeSettings } from "./event-type/event-type-settings/index"; |