File size: 273 Bytes
27e40c0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Component } from '@angular/core';

@Component({
  selector: 'app-submitting-guide',
  standalone: true,
  imports: [],
  templateUrl: './submitting-guide.component.html',
  styleUrl: './submitting-guide.component.css'
})
export class SubmittingGuideComponent {

}