mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
import { ScrollArea } from "@nodegui/react-nodegui";
|
|
import React from "react";
|
|
|
|
function Artist() {
|
|
return (
|
|
<ScrollArea style="min-height: 750px; max-height: 1980px; max-width: 1980px; min-width: 700px; border: none;"></ScrollArea>
|
|
);
|
|
}
|
|
|
|
export default Artist;
|