2021-09-07 00:05:33 +02:00
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2021-12-01 23:09:53 +01:00
|
|
|
import '../../components/kanji/kanji_search_body.dart';
|
2021-09-07 00:05:33 +02:00
|
|
|
|
|
|
|
class KanjiView extends StatelessWidget {
|
2021-12-01 23:09:53 +01:00
|
|
|
const KanjiView({Key? key}) : super(key: key);
|
|
|
|
|
2021-09-07 00:05:33 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-12-04 05:22:58 +01:00
|
|
|
return const KanjiSearchBody();
|
2021-09-07 00:05:33 +02:00
|
|
|
}
|
2021-12-01 23:09:53 +01:00
|
|
|
}
|