mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import style from './OpBlock.module.scss';
|
|
|
|
type Props = {
|
|
entry: string;
|
|
}
|
|
|
|
export default function OpBlock({entry}: Props) {
|
|
return (
|
|
<div>OpBlock</div>
|
|
)
|
|
} |