Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
training-seat-booking
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Manivasagam S
training-seat-booking
Commits
a9cda027
Commit
a9cda027
authored
Jun 17, 2025
by
Manivasagam S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code changes
parent
eb28cd73
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
13 deletions
+0
-13
Input.jsx
src/Components/Base/Input/Input.jsx
+0
-2
Input.stories.jsx
src/Components/Base/Input/Input.stories.jsx
+0
-1
Modal.stories.jsx
src/Components/Base/Modal/Modal.stories.jsx
+0
-1
Select.stories.jsx
src/Components/Base/Select/Select.stories.jsx
+0
-1
Screen.stories.jsx
src/Components/Shared/Screen/Screen.stories.jsx
+0
-1
Notification.jsx
src/Components/Top-level/Notification/Notification.jsx
+0
-5
Seat.stories.jsx
src/Components/Top-level/Seat/Seat.stories.jsx
+0
-1
SeatLayout.stories.jsx
src/Components/Top-level/SeatLayout/SeatLayout.stories.jsx
+0
-1
No files found.
src/Components/Base/Input/Input.jsx
View file @
a9cda027
import
React
from
'react'
import
styles
from
"./Input.module.css"
import
{
ErrorFormatter
}
from
'storybook/internal/components'
export
const
Input
=
({
type
=
'text'
,
placeholder
=
''
,
isInvalid
=
false
,
onChange
,
value
=
''
,
errorMessage
=
""
,...
props
})
=>
{
return
(
<
div
>
...
...
src/Components/Base/Input/Input.stories.jsx
View file @
a9cda027
import
{
background
}
from
"storybook/internal/theming"
;
import
{
Input
}
from
"./Input"
;
export
default
{
...
...
src/Components/Base/Modal/Modal.stories.jsx
View file @
a9cda027
import
{
Modal
}
from
"./Modal"
;
import
{
SeatSelectForm
}
from
"../../Form/SeatSelectForm/SeatSelectForm"
;
// import { action } from 'storybook/actions';
export
default
{
title
:
"Base/Modal"
,
component
:
Modal
,
...
...
src/Components/Base/Select/Select.stories.jsx
View file @
a9cda027
import
React
from
'react'
;
import
{
Select
}
from
'./Select'
;
import
{
action
}
from
'@storybook/addon-actions'
;
export
default
{
title
:
'Base/Select'
,
...
...
src/Components/Shared/Screen/Screen.stories.jsx
View file @
a9cda027
import
React
from
"react"
;
import
{
Screen
}
from
"./Screen"
;
export
default
{
...
...
src/Components/Top-level/Notification/Notification.jsx
View file @
a9cda027
import
PropTypes
from
"prop-types"
;
import
styles
from
"../Notification/Notification.module.css"
;
import
{
Button
}
from
"../../Base/Buttons/Button"
;
import
successImg
from
"../../../assets/success.png"
;
import
errorImg
from
"../../../assets/giferror.gif"
;
import
cn
from
"classnames"
;
import
{
AiOutlineLogout
}
from
"react-icons/ai"
;
export
const
Notification
=
({
title
,
type
,
msg
,
button
,
})
=>
{
const
selectedImage
=
type
===
"success"
?
successImg
:
errorImg
;
// const onLogout=()=>{
// window.location.replace("/");
// }
return
(
<>
{
/* <div className={styles.logoutButton}>
...
...
src/Components/Top-level/Seat/Seat.stories.jsx
View file @
a9cda027
import
React
from
'react'
;
import
{
Seat
}
from
'./Seat'
;
export
default
{
...
...
src/Components/Top-level/SeatLayout/SeatLayout.stories.jsx
View file @
a9cda027
import
React
from
'react'
;
import
{
SeatLayout
}
from
'./SeatLayout'
;
import
{
action
}
from
'@storybook/addon-actions'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment