7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
|
import React from 'react';
|
||
|
export interface ColorsPageProps {
|
||
|
columns: number;
|
||
|
}
|
||
|
declare const ColorsPage: React.FC<ColorsPageProps>;
|
||
|
export default ColorsPage;
|