mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Views\Components\Charts;
|
|
|
|
class Map extends ChartsComponent
|
|
{
|
|
protected string $type = 'map-chart';
|
|
}
|