open page settings
This commit is contained in:
parent
1ebd915064
commit
ae51520966
7 changed files with 70 additions and 2 deletions
20
SurveyFrontend/src/components/TimeEvent/TimeEvent.tsx
Normal file
20
SurveyFrontend/src/components/TimeEvent/TimeEvent.tsx
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import React from 'react';
|
||||
|
||||
|
||||
interface TimeEventProps {
|
||||
title: string;
|
||||
|
||||
}
|
||||
|
||||
const TimeEvent: React.FC<TimeEventProps> = ({title}) => {
|
||||
return (
|
||||
<div>
|
||||
<h2>{title}</h2>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default TimeEvent;
|
||||
Loading…
Add table
Add a link
Reference in a new issue