mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-01 01:44:34 -05:00
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
import React from 'react';
|
|
|
|
type ContextType = {
|
|
title: string
|
|
setTitle: React.Dispatch<React.SetStateAction<string>>
|
|
};
|
|
|
|
const NavBarTitle = React.createContext<ContextType>({
|
|
title: 'Tachidesk',
|
|
setTitle: ():void => {},
|
|
});
|
|
|
|
export default NavBarTitle;
|